Red Hat OpenShift · Schema

BuildConfig

ContainersEnterpriseHybrid CloudKubernetesPaaSRed Hat

Properties

Name Type Description
apiVersion string
kind string
metadata object
spec object
View JSON Schema on GitHub

JSON Schema

red-hat-openshift-buildconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildConfig",
  "title": "BuildConfig",
  "type": "object",
  "properties": {
    "apiVersion": {
      "type": "string",
      "default": "build.openshift.io/v1"
    },
    "kind": {
      "type": "string",
      "default": "BuildConfig"
    },
    "metadata": {
      "$ref": "#/components/schemas/ObjectMeta"
    },
    "spec": {
      "type": "object",
      "properties": {
        "source": {
          "type": "object"
        },
        "strategy": {
          "type": "object"
        },
        "output": {
          "type": "object"
        }
      }
    }
  }
}