Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,878 for nameslice (0.13 sec)

  1. pilot/pkg/model/authentication.go

    	workloadLabels := selectionOpts.WorkloadLabels
    	namespace := selectionOpts.Namespace
    	configs := make([]*config.Config, 0)
    	var lookupInNamespaces []string
    	if namespace != rootNamespace {
    		// Only check the root namespace if the (workload) namespace is not already the root namespace
    		// to avoid double inclusion.
    		lookupInNamespaces = []string{namespace, rootNamespace}
    	} else {
    		lookupInNamespaces = []string{namespace}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http-not-selected
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/authentication_test.go

    }
    
    func createTestRequestAuthenticationResource(
    	name string, namespace string, selector *selectorpb.WorkloadSelector, targetRef *selectorpb.PolicyTargetReference,
    ) *config.Config {
    	ra := &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.RequestAuthentication,
    			Name:             name,
    			Namespace:        namespace,
    		},
    		Spec: &securityBeta.RequestAuthentication{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_total",
    			Help:           "Number of LIST requests served from watch cache",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource_prefix", "index"},
    	)
    	listCacheNumFetched = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_fetched_objects_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top