Skip to content

Commit ff2af19

Browse files
committed
fixing the fastcs-instance chart schema
1 parent 7acb773 commit ff2af19

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Charts/fastcs-instance-ioc/values.schema.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@
121121
"description": "Node selector for the pod",
122122
"required": [],
123123
"title": "nodeSelector",
124-
"type": "object"
124+
"type": [
125+
"object",
126+
"null"
127+
]
125128
},
126129
"podAnnotations": {
127130
"additionalProperties": false,

Charts/fastcs-instance/values.schema.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@
117117
"description": "Node selector for the pod",
118118
"required": [],
119119
"title": "nodeSelector",
120-
"type": "object"
120+
"type": [
121+
"object",
122+
"null"
123+
]
121124
},
122125
"podAnnotations": {
123126
"additionalProperties": false,

Charts/fastcs-instance/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ volumeMounts: []
171171
# @schema
172172
# title: nodeSelector
173173
# description: Node selector for the pod
174-
# type: object
174+
# type: [object, null]
175175
# $ref: https://kubernetesjsonschema.dev/v1.18.1/_definitions.json#/definitions/io.k8s.api.core.v1.NodeSelector
176176
# @schema
177-
nodeSelector: {}
177+
nodeSelector:
178178

179179
# @schema
180180
# title: tolerations

0 commit comments

Comments
 (0)