Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for podSelector (0.14 sec)

  1. pkg/apis/networking/v1/defaults_test.go

    			original: &networkingv1.NetworkPolicy{
    				Spec: networkingv1.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    				},
    			},
    			expected: &networkingv1.NetworkPolicy{
    				Spec: networkingv1.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.NetworkPolicy.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podSelector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1.NetworkPolicy.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podSelector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.NetworkPolicy.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podSelector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1.NetworkPolicy.yaml

            matchLabels:
              matchLabelsKey: matchLabelsValue
          podSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
        ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
      podSelector:
        matchExpressions:
        - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.yaml

            matchLabels:
              matchLabelsKey: matchLabelsValue
          podSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
        ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
      podSelector:
        matchExpressions:
        - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pkg/apis/extensions/v1beta1/defaults_test.go

    			original: &extensionsv1beta1.NetworkPolicy{
    				Spec: extensionsv1beta1.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    				},
    			},
    			expected: &extensionsv1beta1.NetworkPolicy{
    				Spec: extensionsv1beta1.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/util.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    type podSelector struct {
    	Label string
    	Value string
    }
    
    func (s podSelector) String() string {
    	return s.Label + "=" + s.Value
    }
    
    func (s podSelector) MatchesPod(pod *corev1.Pod) bool {
    	return pod.ObjectMeta.Labels[s.Label] == s.Value
    }
    
    func newPodSelector(cfg echo.Config) podSelector {
    	label := "app"
    	if cfg.DeployAsVM {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 03:10:51 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. helm/minio/templates/networkpolicy.yaml

        heritage: {{ .Release.Service }}
    spec:
      podSelector:
        matchLabels:
          app: {{ template "minio.name" . }}
          release: {{ .Release.Name }}
      ingress:
        - ports:
            - port: {{ .Values.minioAPIPort }}
            - port: {{ .Values.minioConsolePort }}
          {{- if not .Values.networkPolicy.allowExternal }}
          from:
            - podSelector:
                matchLabels:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 819 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.NetworkPolicy.yaml

            matchLabels:
              matchLabelsKey: matchLabelsValue
          podSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
        ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
      podSelector:
        matchExpressions:
        - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top