OpenShift · Schema

BuildOutput

Specifies where the resulting container image is pushed.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
to object
pushSecret object Secret holding credentials for pushing to the output registry.
View JSON Schema on GitHub

JSON Schema

openshift-buildoutput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildOutput",
  "title": "BuildOutput",
  "type": "object",
  "description": "Specifies where the resulting container image is pushed.",
  "properties": {
    "to": {
      "$ref": "#/components/schemas/ObjectReference"
    },
    "pushSecret": {
      "type": "object",
      "description": "Secret holding credentials for pushing to the output registry.",
      "properties": {
        "name": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}