Argo Workflows · Schema

io.k8s.api.core.v1.Capabilities

Adds and removes POSIX capabilities from running containers.

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
add array Added capabilities
drop array Removed capabilities
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-k8s-api-core-v1-capabilities-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-k8s-api-core-v1-capabilities-schema.json",
  "title": "io.k8s.api.core.v1.Capabilities",
  "description": "Adds and removes POSIX capabilities from running containers.",
  "type": "object",
  "properties": {
    "add": {
      "description": "Added capabilities",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-kubernetes-list-type": "atomic"
    },
    "drop": {
      "description": "Removed capabilities",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-kubernetes-list-type": "atomic"
    }
  }
}