forked from redhat-ai-dev/ai-lab-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.schema.json
35 lines (34 loc) · 1.4 KB
/
values.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"tekton": {
"type": "object",
"properties": {
"quayConfigJSON": {
"type": "string",
"description": "[REQUIRED] The quay.io config.json used when the application image will be pushed."
},
"quaySecretName": {
"type": "string",
"description": "The name of the Secret containing the required Quay token. If blank it defaults to 'ai-lab-image-registry-token'.",
"default": "ai-lab-image-registry-token"
},
"gitSecretName": {
"type": "string",
"description": "The name of the Secret containing the required Github token. If blank it defaults to 'github-secrets'.",
"default": "github-secrets"
},
"gitSecretKeyToken": {
"type": "string",
"description": "The name of the Secret's key with the Github token value. If blank it defaults to 'password'.",
"default": "password"
},
"gitSecretToken": {
"type": "string",
"description": "[REQUIRED] The Github token value."
}
}
}
}
}