Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,025 for nameslice (0.22 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 02-test-05-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 01-test-06-wildcard-cert
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/tracing.go

    	return &ist
    }
    
    // GetAppNamespace gets echo app namespace instance.
    func GetAppNamespace() namespace.Instance {
    	return appNsInst
    }
    
    func GetIngressInstance() ingress.Instance {
    	return ingInst
    }
    
    func GetZipkinInstance() zipkin.Instance {
    	return zipkinInst
    }
    
    func TestSetup(ctx resource.Context) (err error) {
    	appNsInst, err = namespace.New(ctx, namespace.Config{
    		Prefix: "echo",
    		Inject: true,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    // If the configmap is not found, it will be created.
    // If the namespace is filtered out by discovery selector, the configmap will be deleted.
    func (nc *NamespaceController) reconcileCACert(o types.NamespacedName) error {
    	ns := o.Namespace
    	if ns == "" {
    		// For Namespace object, it will not have o.Namespace field set
    		ns = o.Name
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tests/integration/security/policy_attachment_only/main_test.go

    		SetupParallel(
    			namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true}),
    			namespace.Setup(&serverNS, namespace.Config{Prefix: "servers", Inject: true}),
    		).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&serverNS)),
    			authz.Setup(&authzServer, namespace.Future(&serverNS)),
    			authz.SetupLocal(&localAuthzServer, namespace.Future(&echo1NS)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml

        kind: HTTPRoute
        namespace: istio-system
      to:
      - group: ""
        kind: Service
        name: echo
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: allowed-my-svc
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: my-svc
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 34000
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. helm/minio/templates/NOTES.txt

    {{ template "minio.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
    
    To access MinIO from localhost, run the below commands:
    
      1. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
    
      2. kubectl port-forward $POD_NAME 9000 --namespace {{ .Release.Namespace }}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json

            "name": "nameValue",
            "namespace": "namespaceValue"
          },
          "nodeStageSecretRef": {
            "name": "nameValue",
            "namespace": "namespaceValue"
          },
          "nodePublishSecretRef": {
            "name": "nameValue",
            "namespace": "namespaceValue"
          },
          "controllerExpandSecretRef": {
            "name": "nameValue",
            "namespace": "namespaceValue"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

        controllerExpandSecretRef:
          name: nameValue
          namespace: namespaceValue
        controllerPublishSecretRef:
          name: nameValue
          namespace: namespaceValue
        driver: driverValue
        fsType: fsTypeValue
        nodeExpandSecretRef:
          name: nameValue
          namespace: namespaceValue
        nodePublishSecretRef:
          name: nameValue
          namespace: namespaceValue
        nodeStageSecretRef:
          name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top