Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running
| Name | Type | Description | Notes |
|---|---|---|---|
| label_selector | V1LabelSelector | [optional] | |
| match_label_keys | List[str] | MatchLabelKeys 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 in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn't set. | [optional] |
| mismatch_label_keys | List[str] | 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 the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn't set. | [optional] |
| namespace_selector | V1LabelSelector | [optional] | |
| namespaces | List[str] | namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". | [optional] |
| topology_key | str | This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. |
from kubernetes.client.models.v1_pod_affinity_term import V1PodAffinityTerm
# TODO update the JSON string below
json = "{}"
# create an instance of V1PodAffinityTerm from a JSON string
v1_pod_affinity_term_instance = V1PodAffinityTerm.from_json(json)
# print the JSON string representation of the object
print(V1PodAffinityTerm.to_json())
# convert the object into a dict
v1_pod_affinity_term_dict = v1_pod_affinity_term_instance.to_dict()
# create an instance of V1PodAffinityTerm from a dict
v1_pod_affinity_term_from_dict = V1PodAffinityTerm.from_dict(v1_pod_affinity_term_dict)