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
Copy file name to clipboardExpand all lines: charts/selenium-grid/CONFIGURATION.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
44
44
| global.seleniumGrid.revisionHistoryLimit | int |`10`| Specify how many old ReplicaSets for this Deployment you want to retain. The rest will be garbage-collected in the background. |
| chromeNode.deploymentEnabled | bool |`true`| NOTE: Only used when autoscaling.enabled is false Enable creation of Deployment true (default) - if you want long-living pods false - for provisioning your own custom type such as Jobs |
423
-
| chromeNode.updateStrategy | object |`{"type":"RollingUpdate"}`| Global update strategy will be overwritten by individual component |
423
+
| chromeNode.updateStrategy | object |`{"type":null}`| Global update strategy will be overwritten by individual component |
424
424
| chromeNode.replicas | int |`1`| Number of chrome nodes |
425
425
| chromeNode.imageRegistry | string |`nil`| Registry to pull the image (this overwrites global.seleniumGrid.imageRegistry parameter) |
426
426
| chromeNode.imageName | string |`"node-chrome"`| Image of chrome nodes |
@@ -478,7 +478,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
478
478
| chromeNode.videoRecorder | object |`{}`| Override specific video recording settings for chrome node |
| firefoxNode.deploymentEnabled | bool |`true`| NOTE: Only used when autoscaling.enabled is false Enable creation of Deployment true (default) - if you want long living pods false - for provisioning your own custom type such as Jobs |
481
-
| firefoxNode.updateStrategy | object |`{"type":"RollingUpdate"}`| Global update strategy will be overwritten by individual component |
481
+
| firefoxNode.updateStrategy | object |`{"type":null}`| Global update strategy will be overwritten by individual component |
482
482
| firefoxNode.replicas | int |`1`| Number of firefox nodes |
483
483
| firefoxNode.imageRegistry | string |`nil`| Registry to pull the image (this overwrites global.seleniumGrid.imageRegistry parameter) |
484
484
| firefoxNode.imageName | string |`"node-firefox"`| Image of firefox nodes |
@@ -536,7 +536,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
536
536
| firefoxNode.videoRecorder | object |`{}`| Override specific video recording settings for firefox node |
| edgeNode.deploymentEnabled | bool |`true`| NOTE: Only used when autoscaling.enabled is false Enable creation of Deployment true (default) - if you want long living pods false - for provisioning your own custom type such as Jobs |
539
-
| edgeNode.updateStrategy | object |`{"type":"RollingUpdate"}`| Global update strategy will be overwritten by individual component |
539
+
| edgeNode.updateStrategy | object |`{"type":null}`| Global update strategy will be overwritten by individual component |
540
540
| edgeNode.replicas | int |`1`| Number of edge nodes |
541
541
| edgeNode.imageRegistry | string |`nil`| Registry to pull the image (this overwrites global.seleniumGrid.imageRegistry parameter) |
542
542
| edgeNode.imageName | string |`"node-edge"`| Image of edge nodes |
@@ -595,7 +595,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
| relayNode.relayUrl | string |`""`| Specify another Grid, another network, or a cloud vendor that you wish to connect to (e.g. https://ondemand.us-west-1.saucelabs.com/wd/hub)|
597
597
| relayNode.deploymentEnabled | bool |`true`| NOTE: Only used when autoscaling.enabled is false Enable creation of Deployment true (default) - if you want long-living pods false - for provisioning your own custom type such as Jobs |
598
-
| relayNode.updateStrategy | object |`{"type":"RollingUpdate"}`| Global update strategy will be overwritten by individual component |
598
+
| relayNode.updateStrategy | object |`{"type":null}`| Global update strategy will be overwritten by individual component |
599
599
| relayNode.replicas | int |`1`| Number of relay nodes |
600
600
| relayNode.imageRegistry | string |`nil`| Registry to pull the image (this overwrites global.seleniumGrid.imageRegistry parameter) |
601
601
| relayNode.imageName | string |`"node-base"`| Image of relay nodes |
Copy file name to clipboardExpand all lines: tests/charts/refValues/simplex-minikube.yaml
+3-16
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,12 @@
6
6
# Components serviceType is set to NodePort to allow access from outside the cluster via K8S_PUBLIC_IP and NodePort http://<K8S_PUBLIC_IP>:30444/selenium
7
7
# Use this reference values to deploy e.g. `helm upgrade --install test --values tests/charts/refValues/simplex-minikube.yaml docker-selenium/selenium-grid --version <0.26.3_onwards>`
8
8
global:
9
-
K8S_PUBLIC_IP: "10.10.10.10"# Replace with your public IP
0 commit comments