Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 Node Selector Requirement Structure

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

Type: object Properties: 3 Required: 2
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

io.k8s.api.core.v1.NodeSelectorRequirement is a JSON Structure definition published by Argo Workflows, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

key operator values

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-structure/argo-workflows-io-k8s-api-core-v1-node-selector-requirement-structure.json",
  "name": "io.k8s.api.core.v1.NodeSelectorRequirement",
  "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
  "type": "object",
  "properties": {
    "key": {
      "description": "The label key that the selector applies to.",
      "type": "string"
    },
    "operator": {
      "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
      "type": "string"
    },
    "values": {
      "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-kubernetes-list-type": "atomic"
    }
  },
  "required": [
    "key",
    "operator"
  ]
}