Skip to content

Commit 6a6d1e1

Browse files
authored
fix(chart: Use empty strings as defaults for some empty values (#2176)
- Installing a chart containing selenium-grid chart as a dependency, values are nil: the block above produces empty output, looks like it performs no iterations - Installing a chart containing selenium-grid chart as a dependency, values are "": correct output
1 parent e1c4f17 commit 6a6d1e1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

charts/selenium-grid/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ nodeConfigMap:
113113
# Directory where the extra scripts are mounted to
114114
extraScriptsDirectory: "/opt/selenium"
115115
extraScripts:
116-
nodePreStop.sh:
117-
nodeProbe.sh:
116+
nodePreStop.sh: ""
117+
nodeProbe.sh: ""
118118
# Name of volume mount is used to mount scripts in the ConfigMap
119119
scriptVolumeMountName:
120120
# Automatic browser leftovers cleanup stuck browser processes, tmp files
@@ -136,8 +136,8 @@ recorderConfigMap:
136136
extraScriptsDirectory: "/opt/bin"
137137
# List of extra scripts to be mounted to the container. Format as `filename: content`
138138
extraScripts:
139-
# video.sh:
140-
# video_graphQLQuery.sh:
139+
# video.sh: ""
140+
# video_graphQLQuery.sh: ""
141141
# Name of volume mount is used to mount scripts in the ConfigMap
142142
scriptVolumeMountName:
143143
videoVolumeMountName: videos
@@ -154,7 +154,7 @@ uploaderConfigMap:
154154
extraScriptsDirectory: "/opt/bin"
155155
# List of extra scripts to be mounted to the container. Format as `filename: content`
156156
extraScripts:
157-
upload.sh:
157+
upload.sh: ""
158158
# Extra files stored in Secret to be mounted to the container.
159159
secretFiles:
160160
upload.conf: "[sample]"

0 commit comments

Comments
 (0)