@@ -27,6 +27,8 @@ helm install selenium-grid docker-selenium/selenium-grid --version <version>
27
27
28
28
# In both cases grid exposed by default using ingress. You may want to set hostname for the grid. Default hostname is selenium-grid.local.
29
29
helm install selenium-grid --set ingress.hostname=selenium-grid.k8s.local docker-selenium/chart/selenium-grid/.
30
+ # Verify ingress configuration via kubectl get ingress
31
+ # Notes: In case you want to set hostname is selenium-grid.local. You need to add the IP and hostname to the local host file in `/etc/hosts`
30
32
```
31
33
32
34
## Enable Selenium Grid Autoscaling
@@ -93,6 +95,9 @@ This table contains the configuration parameters of the chart and their default
93
95
94
96
| Parameter | Default | Description |
95
97
| -----------------------------------------------| ---------------------------------------------| ----------------------------------------------------------------------------------------------------------------------------|
98
+ | ` basicAuth.enabled ` | ` true ` | Enable or disable basic auth for Selenium Grid |
99
+ | ` basicAuth.username ` | ` admin ` | Username of basic auth for Selenium Grid |
100
+ | ` basicAuth.password ` | ` admin ` | Password of basic auth for Selenium Grid |
96
101
| ` isolateComponents ` | ` false ` | Deploy Router, Distributor, EventBus, SessionMap and Nodes separately |
97
102
| ` serviceAccount.create ` | ` true ` | Enable or disable creation of service account (if ` false ` , ` serviceAccount.name ` MUST be specified |
98
103
| ` serviceAccount.name ` | ` "" ` | Name of the service account to be made or existing service account to use for all deployments and jobs |
@@ -104,8 +109,10 @@ This table contains the configuration parameters of the chart and their default
104
109
| ` ingress.enabled ` | ` true ` | Enable or disable ingress resource |
105
110
| ` ingress.className ` | ` "" ` | Name of ingress class to select which controller will implement ingress resource |
106
111
| ` ingress.annotations ` | ` {} ` | Custom annotations for ingress resource |
107
- | ` ingress.hostname ` | ` selenium-grid.local ` | Default host for the ingress resource |
112
+ | ` ingress.hostname ` | `` | Default host for the ingress resource |
108
113
| ` ingress.path ` | ` / ` | Default host path for the ingress resource |
114
+ | ` ingress.pathType ` | ` Prefix ` | Default path type for the ingress resource |
115
+ | ` ingress.paths ` | ` [] ` | List of paths config for the ingress resource. This will override the default path |
109
116
| ` ingress.tls ` | ` [] ` | TLS backend configuration for ingress resource |
110
117
| ` autoscaling.enableWithExistingKEDA ` | ` false ` | Enable autoscaling of browser nodes. |
111
118
| ` autoscaling.enabled ` | ` false ` | Same as above plus installation of KEDA |
0 commit comments