Node Selector Term
    data class NodeSelectorTerm(val matchExpressions: List<NodeSelectorRequirement>? = null, val matchFields: List<NodeSelectorRequirement>? = null)
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.
Constructors
Link copied to clipboard
                  constructor(matchExpressions: List<NodeSelectorRequirement>? = null, matchFields: List<NodeSelectorRequirement>? = null)