Skip to content

Commit 59ce95e

Browse files
committed
[SPARK-52209] Fix operatorContainer.env type
### What changes were proposed in this pull request? This PR aims to fix `operatorDeployment.operatorPod.operatorContainer.env` type to allow `null`. ### Why are the changes needed? To provide a correct value schema. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#215 from dongjoon-hyun/SPARK-52209. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 6dff831 commit 59ce95e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-tools/helm/spark-kubernetes-operator/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"description": "JVM arguments for operator"
137137
},
138138
"env": {
139-
"type": "array",
139+
"type": ["null", "array"],
140140
"description": "Environment variables",
141141
"items": {
142142
"type": "object",

0 commit comments

Comments
 (0)