Skip to content

Commit 9ab8d6d

Browse files
committed
[docs] Add a tip to get started with Helm chart
1 parent 7a51fd2 commit 9ab8d6d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diff for: charts/selenium-grid/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,20 @@ helm install selenium-grid --set ingress.hostname=selenium-grid.k8s.local docker
9191
sudo -- sh -c -e "echo \"$(hostname -I | cut -d' ' -f1) selenium-grid.local\" >> /etc/hosts"
9292
```
9393

94+
When deploying the chart with your custom values, it is recommended to create a YAML file with all configs need to change and corresponding values, then pass it to Helm CLI via `--values` flag. This will help you to manage and reuse the config values easily for multiple deployment env as well as other GitOps toos like ArgoCD, Flux, etc. It also helps us quickly to identify the problem when you need support for an issue. For example:
95+
96+
```yaml
97+
# your_deployment_values.yaml
98+
isolateComponents: true
99+
basicAuth:
100+
enabled: true
101+
ingress:
102+
enabled: false
103+
components:
104+
router:
105+
serviceType: "NodePort"
106+
```
107+
94108
### Installing the Nightly chart
95109
96110
Nightly chart is built from the latest main branch of this repository with using Nightly images. It is not recommended to use this chart in production. It is only for testing purpose. The procedure to install the Nightly chart is the same as the above, only different on the version, it is `1.0.0-nightly`

0 commit comments

Comments
 (0)