OpenShift · Schema

EnvVar

An environment variable to set in a container.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
name string The environment variable name.
value string The environment variable value.
View JSON Schema on GitHub

JSON Schema

openshift-rest-env-var-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EnvVar",
  "type": "object",
  "description": "An environment variable to set in a container.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The environment variable name."
    },
    "value": {
      "type": "string",
      "description": "The environment variable value."
    }
  }
}