File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : selenium-grid
3
3
description : A Helm chart for creating a Selenium Grid Server in Kubernetes
4
4
type : application
5
- version : 0.26.3
5
+ version : 0.26.4
6
6
appVersion : 4.16.1-20231219
7
7
icon : https://github.com/SeleniumHQ/docker-selenium/raw/trunk/logo.png
8
8
dependencies :
Original file line number Diff line number Diff line change @@ -400,7 +400,7 @@ Get the url of the grid. If the external url can be figured out from the ingress
400
400
{ {- end -} }
401
401
402
402
{ {- define " seleniumGrid.url.subPath" -} }
403
- { {- $subPath := " / " -} }
403
+ { {- $subPath := " " -} }
404
404
{ {- if $.Values.isolateComponents -} }
405
405
{ {- $subPath = default $subPath $.Values.components.subPath -} }
406
406
{ {- else -} }
Original file line number Diff line number Diff line change 65
65
failureThreshold : {{ .Values.hub.readinessProbe.failureThreshold }}
66
66
{{- end }}
67
67
env :
68
+ {{- with .Values.hub.subPath }}
68
69
- name : SE_SUB_PATH
69
- value : {{ .Values.hub.subPath }}
70
+ value : {{ . | quote }}
71
+ {{- end }}
70
72
{{- if eq .Values.basicAuth.enabled true}}
71
73
- name : ROUTER_USERNAME
72
74
value : {{ .Values.basicAuth.username }}
Original file line number Diff line number Diff line change 45
45
value : {{ template "seleniumGrid.sessionQueue.fullname" . }}
46
46
- name : SE_SESSION_QUEUE_PORT
47
47
value : {{ .Values.components.sessionQueue.port | quote }}
48
+ {{- with .Values.components.subPath }}
48
49
- name : SE_SUB_PATH
49
- value : {{ .Values.components.subPath }}
50
+ value : {{ . | quote }}
51
+ {{- end }}
50
52
{{- if eq .Values.basicAuth.enabled true}}
51
53
- name : ROUTER_USERNAME
52
54
value : {{ .Values.basicAuth.username }}
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ components:
275
275
priorityClassName : " "
276
276
277
277
# Custom sub path for all components
278
- subPath : /
278
+ subPath : " "
279
279
280
280
# Custom environment variables for all components
281
281
extraEnvironmentVariables :
338
338
periodSeconds : 10
339
339
successThreshold : 1
340
340
# Custom sub path for the hub deployment
341
- subPath : /
341
+ subPath : " "
342
342
# Custom environment variables for selenium-hub
343
343
extraEnvironmentVariables :
344
344
# - name: SE_JAVA_OPTS
You can’t perform that action at this time.
0 commit comments