Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PodAntiAffinity (0.19 sec)

  1. pkg/api/pod/util_test.go

    			podSpec: &api.PodSpec{
    				Affinity: &api.Affinity{
    					PodAntiAffinity: &api.PodAntiAffinity{
    						RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{},
    					},
    				},
    			},
    			wantPodSpec: &api.PodSpec{
    				Affinity: &api.Affinity{
    					PodAntiAffinity: &api.PodAntiAffinity{
    						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

    	}
    	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)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Affinity.
    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

    	}
    	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)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Affinity.
    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

              "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
            },
            "podAntiAffinity": {
              "$ref": "#/definitions/io.k8s.api.core.v1.PodAntiAffinity",
              "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
            }
          },
    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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .global.arch }} {{- if gt ($val | int) 0 }} - weight: {{ $val | int }} preference: matchExpressions: - key: kubernetes.io/arch operator: In values: - {{ $key | quote }} {{- end }} {{- end }} {{- end }} {{- define "podAntiAffinity" }} {{- if or .podAntiAffinityLabel .podAntiAffinityTermL}} podAntiAffinity: {{- if .podAntiAffinityLabel }} requiredDuringSchedu: {{- include "podAntiAffinityRequi" . }} {{- end }} {{- if .podAntiAffinityTermL }} preferredDuringSched: {{- include "podAntiAffinityPrefe" . }} {{- end...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top