We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a2145a commit 758e6b7Copy full SHA for 758e6b7
1 file changed
k8s-deployment/values.schema.json
@@ -10,8 +10,16 @@
10
"image": {
11
"type": "object",
12
"properties": {
13
- "repository": { "type": "string" },
14
- "tag": { "type": "string" },
+ "repository": {
+ "type": "string",
15
+ "minLength": 1,
16
+ "description": "Image repository (e.g. ghcr.io/org/app)"
17
+ },
18
+ "tag": {
19
20
21
+ "description": "Image tag (e.g. v1.2.3 or latest)"
22
23
"pullPolicy": {
24
"type": "string",
25
"enum": ["Always", "IfNotPresent", "Never"]
0 commit comments