Argo Workflows · Schema

io.k8s.api.core.v1.Sysctl

Sysctl defines a kernel parameter to be set

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
name string Name of a property to set
value string Value of a property to set
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-k8s-api-core-v1-sysctl-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-sysctl-schema.json",
  "title": "io.k8s.api.core.v1.Sysctl",
  "description": "Sysctl defines a kernel parameter to be set",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of a property to set",
      "type": "string"
    },
    "value": {
      "description": "Value of a property to set",
      "type": "string"
    }
  },
  "required": [
    "name",
    "value"
  ]
}