Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 161 for labelSelector (0.2 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			ObjectMeta: metav1.ObjectMeta{Name: "admin"},
    			AggregationRule: &rbacv1.AggregationRule{
    				ClusterRoleSelectors: []metav1.LabelSelector{
    					{MatchLabels: map[string]string{"rbac.authorization.k8s.io/aggregate-to-admin": "true"}},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1/generated.proto

      // It must match the pod template's labels.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 1;
    
      // An object that describes the pod that will be created.
      // The DaemonSet will create exactly one copy of this pod on every node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/generated.proto

      // It must match the pod template's labels.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 1;
    
      // An object that describes the pod that will be created.
      // The DaemonSet will create exactly one copy of this pod on every node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/generated.proto

      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podSelector = 1;
    
      // namespaceSelector selects namespaces using cluster-scoped labels. This field follows
      // standard label selector semantics; if present but empty, it selects all namespaces.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. tests/integration/operator/switch_cr_test.go

    			LabelSelector: label.IoIstioRev.Name,
    		})
    		if err != nil {
    			return err
    		}
    		if len(deployList.Items) > 0 {
    			return fmt.Errorf("workloads still remain in %s", IstioNamespace)
    		}
    		dsList, err := cs.Kube().AppsV1().DaemonSets(IstioNamespace).List(context.TODO(), metav1.ListOptions{
    			LabelSelector: label.IoIstioRev.Name,
    		})
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. istioctl/pkg/kubeinject/kubeinject.go

    func GetFirstPod(client v1.CoreV1Interface, namespace string, selector string) (*corev1.Pod, error) {
    	options := metav1.ListOptions{LabelSelector: selector}
    
    	sortBy := func(pods []*corev1.Pod) sort.Interface { return sort.Reverse(podutils.ActivePods(pods)) }
    	podList, err := client.Pods(namespace).List(context.TODO(), options)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // It must match the pod template's labels.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 1;
    
      // An object that describes the pod that will be created.
      // The DaemonSet will create exactly one copy of this pod on every node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // It must match the pod template's labels.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 1;
    
      // An object that describes the pod that will be created.
      // The DaemonSet will create exactly one copy of this pod on every node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server.go

    		return err
    	}
    
    	noHeadlessEndpoints, err := labels.NewRequirement(v1.IsHeadlessService, selection.DoesNotExist, nil)
    	if err != nil {
    		return err
    	}
    
    	labelSelector := labels.NewSelector()
    	labelSelector = labelSelector.Add(*noProxyName, *noHeadlessEndpoints)
    
    	// Make informers that filter out objects that want a non-default service proxy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1/generated.proto

      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podSelector = 1;
    
      // namespaceSelector selects namespaces using cluster-scoped labels. This field follows
      // standard label selector semantics; if present but empty, it selects all namespaces.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top