Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 160 for PodAffinity (0.18 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

                values:
                - valuesValue
              matchFields:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
        podAffinity:
          preferredDuringSchedulingIgnoredDuringExecution:
          - podAffinityTerm:
              labelSelector:
                matchExpressions:
                - key: keyValue
                  operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    }
    
    // validatePodAffinity tests that the specified podAffinity fields have valid data
    func validatePodAffinity(podAffinity *core.PodAffinity, allowInvalidLabelValueInSelector bool, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	// TODO:Uncomment below code once RequiredDuringSchedulingRequiredDuringExecution is implemented.
    	// if podAffinity.RequiredDuringSchedulingRequiredDuringExecution != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/strategy.go

    }
    
    func mutatePodAffinity(pod *api.Pod) {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.MatchLabelKeysInPodAffinity) || pod.Spec.Affinity == nil {
    		return
    	}
    	if affinity := pod.Spec.Affinity.PodAffinity; affinity != nil {
    		for i := range affinity.PreferredDuringSchedulingIgnoredDuringExecution {
    			applyMatchLabelKeysAndMismatchLabelKeys(&affinity.PreferredDuringSchedulingIgnoredDuringExecution[i].PodAffinityTerm, pod.Labels)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// owner: @sanposhiho
    	// kep: https://kep.k8s.io/3633
    	// alpha: v1.29
    	// beta: v1.30
    	//
    	// Enables the MatchLabelKeys and MismatchLabelKeys in PodAffinity and PodAntiAffinity.
    	MatchLabelKeysInPodAffinity featuregate.Feature = "MatchLabelKeysInPodAffinity"
    
    	// owner: @denkensk
    	// kep: https://kep.k8s.io/3243
    	// alpha: v1.25
    	// beta: v1.27
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_Pod proto.InternalMessageInfo
    
    func (m *PodAffinity) Reset()      { *m = PodAffinity{} }
    func (*PodAffinity) ProtoMessage() {}
    func (*PodAffinity) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{129}
    }
    func (m *PodAffinity) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PodAffinity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// +optional
    	PodAffinity *PodAffinity
    	// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).
    	// +optional
    	PodAntiAffinity *PodAntiAffinity
    }
    
    // PodAffinity is a group of inter pod affinity scheduling rules.
    type PodAffinity struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Graduate MatchLabelKeys/MismatchLabelKeys feature in PodAffinity/PodAntiAffinity to Beta ([#123638](https://github.com/kubernetes/kubernetes/pull/123638), [@sanposhiho](https://github.com/sanposhiho)) [SIG API Machinery, Apps, Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top