Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/selenium-grid/CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
| videoManager.config.username | string | `""` | Username for the first user when using quick config (default "admin") |
| videoManager.config.password | string | `""` | Hashed password (bcrypt) for the first user when using quick config (default "admin") |
| videoManager.config.noauth | bool | `true` | Use the noauth auther when using quick setup |
| videoManager.extraEnvironmentVariables | list | `[]` | Specify extra environment variables for Router |
| videoManager.extraEnvironmentVariables | list | `[]` | Specify extra environment variables for Router. You can pass any environment variables support by https://filebrowser.org/changelog.html |
| videoManager.extraEnvFrom | list | `[]` | Specify extra environment variables from ConfigMap and Secret for Router |
| videoManager.affinity | object | `{}` | Specify affinity for router pods, this overwrites global.seleniumGrid.affinity parameter |
| videoManager.topologySpreadConstraints | list | `[]` | Specify topologySpreadConstraints for router pods, this overwrites global.seleniumGrid.topologySpreadConstraints parameter |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ spec:
{{- with .Values.videoManager.config.baseurl }}
- name: FB_BASEURL
value: {{ . | quote }}
- name: FB_BASE_URL
value: {{ . | quote }}
{{- end }}
{{- with .Values.videoManager.config.username }}
- name: FB_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion charts/selenium-grid/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2122,7 +2122,7 @@ videoManager:
password: ""
# -- Use the noauth auther when using quick setup
noauth: true
# -- Specify extra environment variables for Router
# -- Specify extra environment variables for Router. You can pass any environment variables support by https://filebrowser.org/changelog.html
extraEnvironmentVariables: []
# -- Specify extra environment variables from ConfigMap and Secret for Router
extraEnvFrom: []
Expand Down
Loading