Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,829 for nameslice (0.3 sec)

  1. pkg/controller/storageversionmigrator/resourceversion.go

    )
    
    const (
    	// this name is guaranteed to be not present in the cluster as it not a valid namespace name
    	fakeSVMNamespaceName          string = "@fake:svm_ns!"
    	ResourceVersionControllerName string = "resource-version-controller"
    )
    
    // ResourceVersionController adds the resource version obtained from a randomly nonexistent namespace
    // to the SVM status before the migration is initiated. This resource version is utilized for checking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    			continue
    		} else if len(paramRef.Namespace) > 0 && p.GetNamespace() != paramRef.Namespace {
    			continue
    		}
    
    		if !paramIsClusterScoped {
    			// If the paramRef has empty namespace and the kind is
    			// namespaced-scoped, then it only matches params of the same
    			// namespace
    			if len(paramRef.Namespace) == 0 && p.GetNamespace() != namespacedRequestObject.GetNamespace() {
    				continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache_test.go

    		ConfigKey{Kind: kind.DestinationRule, Name: "name", Namespace: "namespace"}.HashCode(): sets.New(firstEntry.Key()),
    		ConfigKey{Kind: kind.Gateway, Name: "name", Namespace: "namespace"}.HashCode():         sets.New(firstEntry.Key()),
    		ConfigKey{Kind: kind.EnvoyFilter, Name: "name", Namespace: "namespace"}.HashCode():     sets.New(secondEntry.Key()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	namespaceFinalize := v1.Namespace{}
    	namespaceFinalize.ObjectMeta = namespace.ObjectMeta
    	namespaceFinalize.Spec = namespace.Spec
    	finalizerSet := sets.NewString()
    	for i := range namespace.Spec.Finalizers {
    		if namespace.Spec.Finalizers[i] != d.finalizerToken {
    			finalizerSet.Insert(string(namespace.Spec.Finalizers[i]))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      workloadSelector: # Since this has a workload selector, it shouldn't conflict with the other Sidecar in the namespace
        labels:
          app: foo
      egress:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. pkg/config/schema/kubeclient/resources.gen.go

    	case *apiistioioapinetworkingv1alpha3.DestinationRule:
    		return c.Istio().NetworkingV1alpha3().DestinationRules(namespace).(ktypes.WriteAPI[T])
    	case *k8sioapidiscoveryv1.EndpointSlice:
    		return c.Kube().DiscoveryV1().EndpointSlices(namespace).(ktypes.WriteAPI[T])
    	case *k8sioapicorev1.Endpoints:
    		return c.Kube().CoreV1().Endpoints(namespace).(ktypes.WriteAPI[T])
    	case *apiistioioapinetworkingv1alpha3.EnvoyFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/injection-with-mismatched-sidecar.yaml

    # Namespace 'enabled-namespace' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace
    ---
    # Details-v1-pod-old is out of date and should get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 05:31:06 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 0 {
    		t.Errorf("Expected no live lookups of the namespace, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// verify delete of namespace can proceed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/proxy_dependencies_test.go

    				spiffe.Identity{TrustDomain: "cluster.local", Namespace: "namespace", ServiceAccount: "serviceaccount"}.String(),
    			},
    			sa:        "serviceaccount",
    			namespace: "namespace",
    			success:   true,
    		},
    		{
    			name: "no match namespace",
    			identity: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/tls_test.go

    				},
    				namespace: "bar",
    			},
    			false,
    		},
    		{
    			"source namespace not match when empty",
    			args{
    				match: &v1alpha3.TLSMatchAttributes{
    					SourceNamespace: "foo",
    				},
    				namespace: "",
    			},
    			false,
    		},
    		{
    			"source namespace any",
    			args{
    				match:     &v1alpha3.TLSMatchAttributes{},
    				namespace: "bar",
    			},
    			true,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top