OpenShift · Schema
BuildSpec
Specification of the desired build behavior.
CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS
Properties
| Name | Type | Description |
|---|---|---|
| serviceAccount | string | The name of the ServiceAccount to use to run the build pod. |
| source | object | |
| strategy | object | |
| output | object | |
| resources | object | |
| completionDeadlineSeconds | integer | Optional duration in seconds the build may run before the system terminates it. The countdown starts from the time the build pod is scheduled. |
| nodeSelector | object | Selector which must match a node's labels for the build pod to be scheduled on that node. |
| triggeredBy | array | Describes which triggers started the most recent build. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BuildSpec",
"title": "BuildSpec",
"type": "object",
"description": "Specification of the desired build behavior.",
"properties": {
"serviceAccount": {
"type": "string",
"description": "The name of the ServiceAccount to use to run the build pod.",
"default": "builder",
"example": "example_value"
},
"source": {
"$ref": "#/components/schemas/BuildSource"
},
"strategy": {
"$ref": "#/components/schemas/BuildStrategy"
},
"output": {
"$ref": "#/components/schemas/BuildOutput"
},
"resources": {
"$ref": "#/components/schemas/ResourceRequirements"
},
"completionDeadlineSeconds": {
"type": "integer",
"format": "int64",
"description": "Optional duration in seconds the build may run before the system terminates it. The countdown starts from the time the build pod is scheduled.",
"example": 10
},
"nodeSelector": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Selector which must match a node's labels for the build pod to be scheduled on that node.",
"example": "example_value"
},
"triggeredBy": {
"type": "array",
"description": "Describes which triggers started the most recent build.",
"items": {
"$ref": "#/components/schemas/BuildTriggerCause"
},
"example": []
}
}
}