Skip to content

Commit 90c671d

Browse files
committed
Update schemas
1 parent 452b2a1 commit 90c671d

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

charts/ghost/values.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Schema for ghost helm chart values",
55
"properties": {
66
"extraEnvVars": {
7-
"additionalProperties": false,
7+
"additionalProperties": true,
88
"properties": {},
99
"type": "object"
1010
},
@@ -27,7 +27,7 @@
2727
"additionalProperties": false,
2828
"properties": {
2929
"annotations": {
30-
"additionalProperties": false,
30+
"additionalProperties": true,
3131
"properties": {},
3232
"type": "object"
3333
},
@@ -121,8 +121,8 @@
121121
"type": "object"
122122
},
123123
"resources": {
124+
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.31.6/resourcerequirements.json",
124125
"additionalProperties": false,
125-
"properties": {},
126126
"type": "object"
127127
},
128128
"url": {

charts/ghost/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -- extra env variables for ghost (see https://ghost.org/docs/config)
2-
extraEnvVars: {}
2+
extraEnvVars: {} # @schema additionalProperties: true
33
image:
44
# -- ghost image pull policy
55
pullPolicy: IfNotPresent
@@ -9,7 +9,7 @@ image:
99
tag: ""
1010
ingress:
1111
# -- ingress annotations
12-
annotations: {}
12+
annotations: {} # @schema additionalProperties: true
1313
# -- enable ingress
1414
enabled: false
1515
# -- ingress hosts
@@ -52,6 +52,6 @@ persistence:
5252
# -- ghost pvc size
5353
size: 10Gi
5454
# -- resources for ghost
55-
resources: {}
55+
resources: {} # @schema $ref: https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.31.6/resourcerequirements.json ; skipProperties: true
5656
# -- url for ghost
5757
url: ""

charts/listmonk/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"type": "string"
7676
},
7777
"resources": {
78-
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.31.2/_definitions.json#/definitions/io.k8s.api.core.v1.ResourceRequirements",
78+
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.31.6/resourcerequirements.json",
7979
"additionalProperties": false,
8080
"type": "object"
8181
},

charts/listmonk/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ postgres:
3232
# -- the postgres password
3333
password: ""
3434
# -- resources configuration for the postgres statefulset
35-
resources: {} # @schema $ref: https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.31.2/_definitions.json#/definitions/io.k8s.api.core.v1.ResourceRequirements ; skipProperties: true
35+
resources: {} # @schema $ref: https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.31.6/resourcerequirements.json ; skipProperties: true
3636
# -- the postgres username
3737
user: "listmonk"

charts/n8n/values.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "string"
88
},
99
"env": {
10-
"additionalProperties": false,
10+
"additionalProperties": true,
1111
"properties": {},
1212
"type": "object"
1313
},
@@ -30,7 +30,7 @@
3030
"additionalProperties": false,
3131
"properties": {
3232
"annotations": {
33-
"additionalProperties": false,
33+
"additionalProperties": true,
3434
"properties": {},
3535
"type": "object"
3636
},
@@ -68,8 +68,8 @@
6868
"type": "string"
6969
},
7070
"resources": {
71+
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.31.6/resourcerequirements.json",
7172
"additionalProperties": false,
72-
"properties": {},
7373
"type": "object"
7474
},
7575
"user": {

charts/n8n/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -- n8n encryption key (see [docs](https://docs.n8n.io/hosting/configuration/environment-variables/deployment/))
22
encryptionKey: ""
33
# -- environment variables to be passed to n8n (see [docs](https://docs.n8n.io/hosting/configuration/environment-variables/))
4-
env: {}
4+
env: {} # @schema additionalProperties: true
55
image:
66
# -- n8n image pull policy
77
pullPolicy: IfNotPresent
@@ -11,7 +11,7 @@ image:
1111
tag: ""
1212
ingress:
1313
# -- the ingress annotations
14-
annotations: {}
14+
annotations: {} # @schema additionalProperties: true
1515
# -- enable the ingress
1616
enabled: false
1717
# -- the ingress hosts
@@ -29,7 +29,7 @@ postgres:
2929
# -- the postgres password
3030
password: n8n
3131
# -- resources configuration for the postgres statefulset
32-
resources: {}
32+
resources: {} # @schema $ref: https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.31.6/resourcerequirements.json ; skipProperties: true
3333
# -- the postgres user
3434
user: n8n
3535
# -- number of n8n deployment replicas

0 commit comments

Comments
 (0)