File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this helm chart will be documented in this file.
4
4
5
+ ## :heavy_check_mark : 0.15.3
6
+
7
+ ### Changed
8
+ - Make ingress compatible with format prior to 1.19-0 k8s version
9
+
5
10
## :heavy_check_mark : 0.15.2
6
11
7
12
### Changed
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ 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.15.2
5
+ version : 0.15.3
6
6
appVersion : 4.8.1-20230221
7
7
icon : https://github.com/SeleniumHQ/docker-selenium/raw/trunk/logo.png
Original file line number Diff line number Diff line change 44
44
{{- else }}
45
45
- http :
46
46
{{- end }}
47
+ {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.Version }}
47
48
paths :
48
49
- path : /
49
50
pathType : Prefix
58
59
port :
59
60
number : {{ $.Values.hub.port }}
60
61
{{- end }}
62
+ {{- else }}
63
+ paths :
64
+ - path : /
65
+ backend :
66
+ {{- if $.Values.isolateComponents }}
67
+ serviceName : {{ template "seleniumGrid.router.fullname" $ }}
68
+ servicePort : {{ $.Values.components.router.port }}
69
+ {{- else }}
70
+ serviceName : {{ template "seleniumGrid.hub.fullname" $ }}
71
+ servicePort : {{ $.Values.hub.port }}
72
+ {{- end }}
73
+ {{- end }}
61
74
{{- end }}
You can’t perform that action at this time.
0 commit comments