You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
helm: add lifecycle preStop hook & startupProbe, fix port number (#1609)
helm: add lifecycle preStop hook & startupProbe, fix port number in values.yaml
* Fix typos in templates
Co-authored-by: Vadim Grek <[email protected]>
* Resolve conflicts
Co-authored-by: Diego Molina <[email protected]>
Copy file name to clipboardExpand all lines: charts/selenium-grid/README.md
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ This table contains the configuration parameters of the chart and their default
73
73
|`chromeNode.imageTag`|`4.3.0-20220726`| Image of chrome nodes |
74
74
|`chromeNode.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
75
75
|`chromeNode.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
76
-
|`chromeNode.ports`|`[5553]`| Port list to enable on container |
76
+
|`chromeNode.ports`|`[5555]`| Port list to enable on container |
77
77
|`chromeNode.seleniumPort`|`5900`| Selenium port (spec.ports[0].targetPort in kubernetes service) |
78
78
|`chromeNode.seleniumServicePort`|`6900`| Selenium port exposed in service (spec.ports[0].port in kubernetes service) |
79
79
|`chromeNode.annotations`|`{}`| Annotations for chrome-node pods |
@@ -89,6 +89,9 @@ This table contains the configuration parameters of the chart and their default
89
89
|`chromeNode.service.type`|`ClusterIP`| Service type |
90
90
|`chromeNode.service.annotations`|`{}`| Custom annotations for service |
91
91
|`chromeNode.dshmVolumeSizeLimit`|`1Gi`| Size limit for DSH volume mounted in container (if not set, default is "1Gi") |
92
+
|`chromeNode.startupProbe`|`{}`| Probe to check pod is started successfully |
93
+
|`chromeNode.terminationGracePeriodSeconds`|`30`| Time to graceful terminate container (default: 30s) |
94
+
|`chromeNode.lifecycle`|`{}`| hooks to make pod correctly shutdown or started |
92
95
|`chromeNode.extraVolumeMounts`|`[]`| Extra mounts of declared ExtraVolumes into pod |
93
96
|`chromeNode.extraVolumes`|`[]`| Extra Volumes declarations to be used in the pod (can be any supported volume type: ConfigMap, Secret, PVC, NFS, etc.) |
@@ -97,7 +100,7 @@ This table contains the configuration parameters of the chart and their default
97
100
|`firefoxNode.imageTag`|`4.3.0-20220726`| Image of firefox nodes |
98
101
|`firefoxNode.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
99
102
|`firefoxNode.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
100
-
|`firefoxNode.ports`|`[5553]`| Port list to enable on container |
103
+
|`firefoxNode.ports`|`[5555]`| Port list to enable on container |
101
104
|`firefoxNode.seleniumPort`|`5900`| Selenium port (spec.ports[0].targetPort in kubernetes service) |
102
105
|`firefoxNode.seleniumServicePort`|`6900`| Selenium port exposed in service (spec.ports[0].port in kubernetes service) |
103
106
|`firefoxNode.annotations`|`{}`| Annotations for firefox-node pods |
@@ -113,6 +116,9 @@ This table contains the configuration parameters of the chart and their default
113
116
|`firefoxNode.service.type`|`ClusterIP`| Service type |
114
117
|`firefoxNode.service.annotations`|`{}`| Custom annotations for service |
115
118
|`firefoxNode.dshmVolumeSizeLimit`|`1Gi`| Size limit for DSH volume mounted in container (if not set, default is "1Gi") |
119
+
|`firefoxNode.startupProbe`|`{}`| Probe to check pod is started successfully |
120
+
|`firefoxNode.terminationGracePeriodSeconds`|`30`| Time to graceful terminate container (default: 30s) |
121
+
|`firefoxNode.lifecycle`|`{}`| hooks to make pod correctly shutdown or started |
116
122
|`firefoxNode.extraVolumeMounts`|`[]`| Extra mounts of declared ExtraVolumes into pod |
117
123
|`firefoxNode.extraVolumes`|`[]`| Extra Volumes declarations to be used in the pod (can be any supported volume type: ConfigMap, Secret, PVC, NFS, etc.) |
118
124
|`edgeNode.enabled`|`true`| Enable edge nodes |
@@ -121,7 +127,7 @@ This table contains the configuration parameters of the chart and their default
121
127
|`edgeNode.imageTag`|`4.3.0-20220726`| Image of edge nodes |
122
128
|`edgeNode.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
123
129
|`edgeNode.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
124
-
|`edgeNode.ports`|`[5553]`| Port list to enable on container |
130
+
|`edgeNode.ports`|`[5555]`| Port list to enable on container |
125
131
|`edgeNode.seleniumPort`|`5900`| Selenium port (spec.ports[0].targetPort in kubernetes service) |
126
132
|`edgeNode.seleniumServicePort`|`6900`| Selenium port exposed in service (spec.ports[0].port in kubernetes service) |
127
133
|`edgeNode.annotations`|`{}`| Annotations for edge-node pods |
@@ -137,6 +143,9 @@ This table contains the configuration parameters of the chart and their default
137
143
|`edgeNode.service.type`|`ClusterIP`| Service type |
138
144
|`edgeNode.service.annotations`|`{}`| Custom annotations for service |
139
145
|`edgeNode.dshmVolumeSizeLimit`|`1Gi`| Size limit for DSH volume mounted in container (if not set, default is "1Gi") |
146
+
|`edgeNode.startupProbe`|`{}`| Probe to check pod is started successfully |
147
+
|`edgeNode.terminationGracePeriodSeconds`|`30`| Time to graceful terminate container (default: 30s) |
148
+
|`edgeNode.lifecycle`|`{}`| hooks to make pod correctly shutdown or started |
140
149
|`edgeNode.extraVolumeMounts`|`[]`| Extra mounts of declared ExtraVolumes into pod |
141
150
|`edgeNode.extraVolumes`|`[]`| Extra Volumes declarations to be used in the pod (can be any supported volume type: ConfigMap, Secret, PVC, NFS, etc.) |
142
151
|`customLabels`|`{}`| Custom labels for k8s resources |
0 commit comments