Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doesnotexit (0.11 sec)

  1. tests/integration/iop-ambient-test-defaults.yaml

          accessLogFile: /dev/stdout
          # Just used to exclude for testing
          discoverySelectors:
          - matchExpressions:
            - key: istio.io/test-exclude-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. pkg/kube/namespace/filter.go

    			op = selection.In
    		case metav1.LabelSelectorOpNotIn:
    			op = selection.NotIn
    		case metav1.LabelSelectorOpExists:
    			op = selection.Exists
    		case metav1.LabelSelectorOpDoesNotExist:
    			op = selection.DoesNotExist
    		default:
    			return nil, fmt.Errorf("%q is not a valid label selector operator", expr.Operator)
    		}
    		r, err := labels.NewRequirement(expr.Key, op, append([]string(nil), expr.Values...))
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top