Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mismatchLabelKeys (0.39 sec)

  1. pkg/apis/core/validation/validation.go

    }
    
    // validateMatchLabelKeysAndMismatchLabelKeys checks if both matchLabelKeys and mismatchLabelKeys are valid.
    // - validate that all matchLabelKeys and mismatchLabelKeys are valid label names.
    // - validate that the user doens't specify the same key in both matchLabelKeys and labelSelector.
    // - validate that any matchLabelKeys are not duplicated with mismatchLabelKeys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
    	// Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
    	// This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
    	//
    	// +listType=atomic
    	// +optional
    	MismatchLabelKeys []string `json:"mismatchLabelKeys,omitempty" protobuf:"bytes,6,opt,name=mismatchLabelKeys"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
    	// Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
    	// This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
    	//
    	// +listType=atomic
    	// +optional
    	MismatchLabelKeys []string
    }
    
    // NodeAffinity is a group of node affinity scheduling rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"mismatchLabelKeys": "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
      // Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
      // This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
      //
      // +listType=atomic
      // +optional
      repeated string mismatchLabelKeys = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	out.TopologyKey = in.TopologyKey
    	out.NamespaceSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.NamespaceSelector))
    	out.MatchLabelKeys = *(*[]string)(unsafe.Pointer(&in.MatchLabelKeys))
    	out.MismatchLabelKeys = *(*[]string)(unsafe.Pointer(&in.MismatchLabelKeys))
    	return nil
    }
    
    // Convert_v1_PodAffinityTerm_To_core_PodAffinityTerm is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "mismatchLabelKeys": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. 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)
Back to top