Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PodAffinity (0.35 sec)

  1. pkg/scheduler/framework/types.go

    	if affinity != nil && affinity.PodAffinity != nil {
    		if len(affinity.PodAffinity.RequiredDuringSchedulingIgnoredDuringExecution) != 0 {
    			terms = affinity.PodAffinity.RequiredDuringSchedulingIgnoredDuringExecution
    		}
    		// TODO: Uncomment this block when implement RequiredDuringSchedulingRequiredDuringExecution.
    		// if len(affinity.PodAffinity.RequiredDuringSchedulingRequiredDuringExecution) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.28.md

    - The Kubernetes apiserver now emits a warning message for Pods with a null labelSelector in podAffinity or topologySpreadConstraints. The null labelSelector means "match none". Using it in podAffinity or topologySpreadConstraint could lead to unintended behavior. ([#117025](https://github.com/kubernetes/kubernetes/pull/117025), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "Describes node affinity scheduling rules for the pod."
              },
              "podAffinity": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinity"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - The `matchLabelKeys/mismatchLabelKeys` feature is introduced to the hard/soft `PodAffinity/PodAntiAffinity`. ([#116065](https://github.com/kubernetes/kubernetes/pull/116065), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/api/core/v1.NodeAffinity"),
    						},
    					},
    					"podAffinity": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).",
    							Ref:         ref("k8s.io/api/core/v1.PodAffinity"),
    						},
    					},
    					"podAntiAffinity": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/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: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top