A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
| Name | Type | Description | Notes |
|---|---|---|---|
| match_expressions | List[V1NodeSelectorRequirement] | A list of node selector requirements by node's labels. | [optional] |
| match_fields | List[V1NodeSelectorRequirement] | A list of node selector requirements by node's fields. | [optional] |
from kubernetes.client.models.v1_node_selector_term import V1NodeSelectorTerm
# TODO update the JSON string below
json = "{}"
# create an instance of V1NodeSelectorTerm from a JSON string
v1_node_selector_term_instance = V1NodeSelectorTerm.from_json(json)
# print the JSON string representation of the object
print(V1NodeSelectorTerm.to_json())
# convert the object into a dict
v1_node_selector_term_dict = v1_node_selector_term_instance.to_dict()
# create an instance of V1NodeSelectorTerm from a dict
v1_node_selector_term_from_dict = V1NodeSelectorTerm.from_dict(v1_node_selector_term_dict)