Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 1,009 for matchLabels (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json

          "namespaceSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
            },
            "matchExpressions": [
              {
                "key": "keyValue",
                "operator": "operatorValue",
                "values": [
                  "valuesValue"
                ]
              }
            ]
          },
          "objectSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml

          - key: keyValue
            operator: operatorValue
            values:
            - valuesValue
          matchLabels:
            matchLabelsKey: matchLabelsValue
        objectSelector:
          matchExpressions:
          - key: keyValue
            operator: operatorValue
            values:
            - valuesValue
          matchLabels:
            matchLabelsKey: matchLabelsValue
        resourceRules:
        - apiGroups:
          - apiGroupsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/registry/apps/daemonset/strategy_test.go

    			map[string]string{"c": "d"},
    			field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: field.NewPath("spec").Child("selector").String(),
    					BadValue: &metav1.LabelSelector{
    						MatchLabels:      map[string]string{"c": "d"},
    						MatchExpressions: []metav1.LabelSelectorRequirement{},
    					},
    					Detail: "field is immutable",
    				},
    			},
    		},
    		{
    			genericapirequest.RequestInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/conversion_test.go

    	matchLabels := map[string]string{"foo": "bar"}
    	selector1 := &metav1.LabelSelector{MatchLabels: matchLabels}
    	labelsSelector1, _ := metav1.LabelSelectorAsSelector(selector1)
    
    	matchExpressions := []metav1.LabelSelectorRequirement{
    		{Key: "foo", Operator: metav1.LabelSelectorOpIn, Values: []string{"foo"}},
    	}
    	selector2 := &metav1.LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. pkg/api/node/util.go

    					expression.Key,
    					msg,
    				),
    			)
    		}
    	}
    
    	// use of deprecated node labels in matchLabels
    	for label := range nodeSelector.MatchLabels {
    		if msg, deprecated := GetNodeLabelDeprecatedMessage(label); deprecated {
    			warnings = append(warnings, fmt.Sprintf("%s: %s", fieldPath.Child("matchLabels").Child(label), msg))
    		}
    	}
    	return warnings
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. samples/tcp-echo/tcp-echo-services.yaml

      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo-v1
      labels:
        app: tcp-echo
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: tcp-echo
          version: v1
      template:
        metadata:
          labels:
            app: tcp-echo
            version: v1
        spec:
          containers:
          - name: tcp-echo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. tests/integration/security/pass_through_filter_chain_test.go

    					name: "DISABLE with STRICT",
    					config: `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}-mtls
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      mtls:
        mode: DISABLE
      portLevelMtls:
        {{ (.To.PortForName "tcp-wl-only").WorkloadPort }}:
          mode: STRICT`,
    					expected: []expect{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    		Spec: policy.PodDisruptionBudgetSpec{
    			MinAvailable:               &minAvailable,
    			Selector:                   &metav1.LabelSelector{MatchLabels: validSelector},
    			UnhealthyPodEvictionPolicy: tc.unhealthyPodEvictionPolicy,
    		},
    	}
    
    	Strategy.PrepareForCreate(ctx, pdb)
    	errs := Strategy.Validate(ctx, pdb)
    	if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

    metadata:
      labels:
        app: metadata-agent
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
      name: metadata-agent
      namespace: kube-system
    spec:
      selector:
        matchLabels:
          app: metadata-agent
      template:
        metadata:
          labels:
            app: metadata-agent
        spec:
          securityContext:
            seccompProfile:
              type: RuntimeDefault
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  10. samples/addons/extras/skywalking.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: skywalking-oap
      namespace: istio-system
      labels:
        app: skywalking-oap
    spec:
      selector:
        matchLabels:
          app: skywalking-oap
      template:
        metadata:
          labels:
            app: skywalking-oap
            sidecar.istio.io/inject: "false"
        spec:
          containers:
            - name: skywalking-oap
              image: apache/skywalking-oap-server:9.7.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 21:40:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top