Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 189 for notin (0.05 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

              values:
                - default
            - key: istio-injection
              operator: DoesNotExist
        objectSelector:
          matchExpressions:
            - key: sidecar.istio.io/inject
              operator: NotIn
              values:
                - "false"
        reinvocationPolicy: Never
        rules:
          - apiGroups:
              - ""
            apiVersions:
              - v1
            operations:
              - CREATE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    	case selection.In:
    		sb.WriteString(" in ")
    	case selection.NotIn:
    		sb.WriteString(" notin ")
    	case selection.GreaterThan:
    		sb.WriteString(">")
    	case selection.LessThan:
    		sb.WriteString("<")
    	case selection.Exists, selection.DoesNotExist:
    		return sb.String()
    	}
    
    	switch r.operator {
    	case selection.In, selection.NotIn:
    		sb.WriteString("(")
    	}
    	if len(r.strValues) == 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  4. istioctl/pkg/checkinject/testdata/check-inject/rev-16-injector.yaml

              values:
                - 1-16
            - key: istio-injection
              operator: DoesNotExist
        objectSelector:
          matchExpressions:
            - key: sidecar.istio.io/inject
              operator: NotIn
              values:
                - "false"
        reinvocationPolicy: Never
        rules:
          - apiGroups:
              - ""
            apiVersions:
              - v1
            operations:
              - CREATE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/gateway-allowedroutes-fix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 48044
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 218 bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
      sideEffects: None
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	s.NodeSelectorTerms = append(s.NodeSelectorTerms, selectorTerm)
    	return s
    }
    
    // NotIn injects a matchExpression (with an operator NotIn) as a selectorTerm
    // to the inner nodeSelector.
    func (s *NodeSelectorWrapper) NotIn(key string, vals []string) *NodeSelectorWrapper {
    	expression := v1.NodeSelectorRequirement{
    		Key:      key,
    		Operator: v1.NodeSelectorOpNotIn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. common/scripts/metallb-native.yaml

                                  to a set of values. Valid operators are In, NotIn, Exists
                                  and DoesNotExist.
                                type: string
                              values:
                                description: values is an array of string values. If the
                                  operator is In or NotIn, the values array must be non-empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    	}
    	for _, expr := range ps.MatchExpressions {
    		var op selection.Operator
    		switch expr.Operator {
    		case LabelSelectorOpIn:
    			op = selection.In
    		case LabelSelectorOpNotIn:
    			op = selection.NotIn
    		case LabelSelectorOpExists:
    			op = selection.Exists
    		case LabelSelectorOpDoesNotExist:
    			op = selection.DoesNotExist
    		default:
    			return nil, fmt.Errorf("%q is not a valid label selector operator", expr.Operator)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top