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: ability to specify image pull secrets (#1619) (#1620)
* Helm: ability to specify image pull secrets (#1619)
Added global value `global.seleniumGrid.imagePullSecret`
Added per component override `component.imagePullSecret`
Updated readme
Bumped chart version to 0.7.0
* Helm: ability to specify image pull secrets (#1619)
Added global value `global.seleniumGrid.imagePullSecret`
Added per component override `component.imagePullSecret`
Updated readme
Bumped chart version to 0.7.0
@@ -186,6 +192,7 @@ If you implement selenium-grid with separate components (`isolateComponents: tru
186
192
|`components.distributor.imageName`|`selenium/distributor`| Distributor image name |
187
193
|`components.distributor.imageTag`|`nil`| Distributor image tag (this overwrites `.global.seleniumGrid.imageTag` value) |
188
194
|`components.distributor.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
195
+
|`components.distributor.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
189
196
|`components.distributor.annotations`|`{}`| Custom annotations for Distributor pod |
190
197
|`components.distributor.port`|`5553`| Distributor port |
191
198
|`components.distributor.resources`|`{}`| Resources for Distributor container |
@@ -197,6 +204,7 @@ If you implement selenium-grid with separate components (`isolateComponents: tru
197
204
|`components.eventBus.imageName`|`selenium/event-bus`| Event Bus image name |
198
205
|`components.eventBus.imageTag`|`nil`| Event Bus image tag (this overwrites `.global.seleniumGrid.imageTag` value) |
199
206
|`components.eventBus.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
207
+
|`components.eventBus.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
200
208
|`components.eventBus.annotations`|`{}`| Custom annotations for Event Bus pod |
201
209
|`components.eventBus.port`|`5557`| Event Bus port |
202
210
|`components.eventBus.publishPort`|`4442`| Port where events are published |
@@ -210,6 +218,7 @@ If you implement selenium-grid with separate components (`isolateComponents: tru
210
218
|`components.sessionMap.imageName`|`selenium/sessions`| Session Map image name |
211
219
|`components.sessionMap.imageTag`|`nil`| Session Map image tag (this overwrites `.global.seleniumGrid.imageTag` value) |
212
220
|`components.sessionMap.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
221
+
|`components.sessionMap.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
213
222
|`components.sessionMap.annotations`|`{}`| Custom annotations for Session Map pod |
214
223
|`components.sessionMap.resources`|`{}`| Resources for event-bus container |
215
224
|`components.sessionMap.serviceType`|`ClusterIP`| Kubernetes service type (see https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types)|
@@ -220,6 +229,7 @@ If you implement selenium-grid with separate components (`isolateComponents: tru
220
229
|`components.sessionQueue.imageName`|`selenium/session-queue`| Session Queue image name |
221
230
|`components.sessionQueue.imageTag`|`nil`| Session Queue image tag (this overwrites `.global.seleniumGrid.imageTag` value) |
222
231
|`components.sessionQueue.imagePullPolicy`|`IfNotPresent`| Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)|
232
+
|`components.sessionQueue.imagePullSecret`|`""`| Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry)|
223
233
|`components.sessionQueue.annotations`|`{}`| Custom annotations for Session Queue pod |
224
234
|`components.sessionQueue.resources`|`{}`| Resources for event-bus container |
225
235
|`components.sessionQueue.serviceType`|`ClusterIP`| Kubernetes service type (see https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types)|
0 commit comments