# io.k8s.api.core.v1.NodeSelectorTerm

From **Kubernetes**.

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.

- Type: `object`

## Properties

### `matchExpressions`

- Required: false
- Type: `array`

A list of node selector requirements by node's labels.

### `matchFields`

- Required: false
- Type: `array`

A list of node selector requirements by node's fields.

## JSON Schema

```json
{"description":"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.","properties":{"matchExpressions":{"description":"A list of node selector requirements by node's labels.","items":{"$ref":"#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement"},"type":"array","x-kubernetes-list-type":"atomic"},"matchFields":{"description":"A list of node selector requirements by node's fields.","items":{"$ref":"#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement"},"type":"array","x-kubernetes-list-type":"atomic"}},"type":"object","x-kubernetes-map-type":"atomic"}
```
