Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,965 for nameslice (0.14 sec)

  1. pilot/pkg/model/credentials/resource.go

    	ResourceType string
    	// Name is the name of the secret
    	Name string
    	// Namespace is the namespace the secret resides in. For implicit namespace references (such as in KubernetesSecretType),
    	// this will be resolved to the appropriate namespace. As a result, this should never be empty.
    	Namespace string
    	// ResourceName is the original name of the resource
    	ResourceName string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. istioctl/pkg/cli/option.go

    		"Istio system namespace")
    	return r
    }
    
    // Namespace returns the namespace flag value.
    func (r *RootFlags) Namespace() string {
    	return *r.namespace
    }
    
    // IstioNamespace returns the istioNamespace flag value.
    func (r *RootFlags) IstioNamespace() string {
    	return *r.istioNamespace
    }
    
    // DefaultNamespace returns the default namespace to use.
    func (r *RootFlags) DefaultNamespace() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 18:01:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    	PluginName = "NamespaceLifecycle"
    	// how long a namespace stays in the force live lookup cache before expiration.
    	forceLiveLookupTTL = 30 * time.Second
    	// how long to wait for a missing namespace before re-checking the cache (and then doing a live lookup)
    	// this accomplishes two things:
    	// 1. It allows a watch-fed cache time to observe a namespace creation event
    	// 2. It allows time for a namespace creation to distribute to members of a storage cluster,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/credentials/resource_test.go

    			resource:         "kubernetes-gateway://namespace/cert",
    			defaultNamespace: "default",
    			expected: SecretResource{
    				ResourceType: KubernetesGatewaySecretType,
    				Name:         "cert",
    				Namespace:    "namespace",
    				ResourceName: "kubernetes-gateway://namespace/cert",
    				Cluster:      "config",
    			},
    		},
    		{
    			name:             "kubernetes-gateway without namespace",
    			resource:         "kubernetes-gateway://cert",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/namespace_handler.go

    )
    
    // NamespaceDiscoveryHandler is to handle namespace selected or deselected because of discoverySelectors change,
    // rather than namespace add/update/delete event triggered from namespace informer.
    func (s *Controller) NamespaceDiscoveryHandler(namespace string, event model.Event) {
    	if event == model.EventDelete {
    		log.Debugf("Handle event namespace %s deselected", namespace)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 13:44:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/registry/core/namespace/storage/storage_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	object, err := storage.Get(ctx, "foo", &metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	actual := object.(*api.Namespace)
    	if actual.Name != namespace.Name {
    		t.Errorf("unexpected namespace: %#v", actual)
    	}
    	if len(actual.UID) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/api/v1/persistentvolume/util_test.go

    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				ISCSI: &corev1.ISCSIPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name:      "Spec.PersistentVolumeSource.ISCSI.SecretRef",
    						Namespace: "iscsi"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top