Argo Workflows · Schema

io.k8s.api.core.v1.HTTPHeader

HTTPHeader describes a custom header to be used in HTTP probes

CNCFContainersData ProcessingKubernetesMachine-LearningOpen-SourceWorkflow Engine

Properties

Name Type Description
name string The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
value string The header field value
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-k8s-api-core-v1-http-header-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-http-header-schema.json",
  "title": "io.k8s.api.core.v1.HTTPHeader",
  "description": "HTTPHeader describes a custom header to be used in HTTP probes",
  "type": "object",
  "properties": {
    "name": {
      "description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.",
      "type": "string"
    },
    "value": {
      "description": "The header field value",
      "type": "string"
    }
  },
  "required": [
    "name",
    "value"
  ]
}