Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PodAffinity (0.14 sec)

  1. pkg/api/pod/util_test.go

    					PodAffinity: &api.PodAffinity{
    						RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{},
    					},
    				},
    			},
    			wantPodSpec: &api.PodSpec{
    				Affinity: &api.Affinity{
    					PodAffinity: &api.PodAffinity{
    						RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{},
    					},
    				},
    			},
    		},
    		{
    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/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.NodeAffinity != nil {
    		in, out := &in.NodeAffinity, &out.NodeAffinity
    		*out = new(NodeAffinity)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PodAffinity != nil {
    		in, out := &in.PodAffinity, &out.PodAffinity
    		*out = new(PodAffinity)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PodAntiAffinity != nil {
    		in, out := &in.PodAntiAffinity, &out.PodAntiAffinity
    		*out = new(PodAntiAffinity)
    		(*in).DeepCopyInto(*out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.NodeAffinity != nil {
    		in, out := &in.NodeAffinity, &out.NodeAffinity
    		*out = new(NodeAffinity)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PodAffinity != nil {
    		in, out := &in.PodAffinity, &out.PodAffinity
    		*out = new(PodAffinity)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PodAntiAffinity != nil {
    		in, out := &in.PodAntiAffinity, &out.PodAntiAffinity
    		*out = new(PodAntiAffinity)
    		(*in).DeepCopyInto(*out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.api.core.v1.NodeAffinity",
              "description": "Describes node affinity scheduling rules for the pod."
            },
            "podAffinity": {
              "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinity",
              "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
            },
            "podAntiAffinity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    					{key: "node", value: "node-a"}: 1,
    					{key: "node", value: "node-b"}: 0,
    					{key: "node", value: "node-y"}: 2,
    				},
    			},
    		},
    		{
    			name: "two spreadConstraints, and with podAffinity",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				NodeAffinityNotIn("node", []string{"node-x"}). // exclude node-x
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top