Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MatchLabelKeys (0.33 sec)

  1. pkg/api/pod/util_test.go

    		},
    		{
    			name:    "feature disabled, both pods use MatchLabelKeys fields",
    			enabled: false,
    			oldPodSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{
    					{MatchLabelKeys: []string{"foo"}},
    				},
    			},
    			podSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{
    					{MatchLabelKeys: []string{"foo"}},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    					{key: "zone", value: "zone2"}:  3,
    					{key: "node", value: "node-x"}: 2,
    					{key: "node", value: "node-y"}: 1,
    				},
    			},
    			enableNodeInclusionPolicy: true,
    		},
    		{
    			name: "matchLabelKeys ignored when feature gate disabled",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, []string{"bar"}).
    				Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.NamespaceSelector != nil {
    		in, out := &in.NamespaceSelector, &out.NamespaceSelector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.MatchLabelKeys != nil {
    		in, out := &in.MatchLabelKeys, &out.MatchLabelKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.MismatchLabelKeys != nil {
    		in, out := &in.MismatchLabelKeys, &out.MismatchLabelKeys
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.NamespaceSelector != nil {
    		in, out := &in.NamespaceSelector, &out.NamespaceSelector
    		*out = new(metav1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.MatchLabelKeys != nil {
    		in, out := &in.MatchLabelKeys, &out.MatchLabelKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.MismatchLabelKeys != nil {
    		in, out := &in.MismatchLabelKeys, &out.MismatchLabelKeys
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top