Skip to content

Commit e9cd214

Browse files
authored
K8s: Add transitionary support for FB_BASEURL to FB_BASE_URL (#3053)
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 97c2936 commit e9cd214

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

charts/selenium-grid/CONFIGURATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
719719
| videoManager.config.username | string | `""` | Username for the first user when using quick config (default "admin") |
720720
| videoManager.config.password | string | `""` | Hashed password (bcrypt) for the first user when using quick config (default "admin") |
721721
| videoManager.config.noauth | bool | `true` | Use the noauth auther when using quick setup |
722-
| videoManager.extraEnvironmentVariables | list | `[]` | Specify extra environment variables for Router |
722+
| videoManager.extraEnvironmentVariables | list | `[]` | Specify extra environment variables for Router. You can pass any environment variables support by https://filebrowser.org/changelog.html |
723723
| videoManager.extraEnvFrom | list | `[]` | Specify extra environment variables from ConfigMap and Secret for Router |
724724
| videoManager.affinity | object | `{}` | Specify affinity for router pods, this overwrites global.seleniumGrid.affinity parameter |
725725
| videoManager.topologySpreadConstraints | list | `[]` | Specify topologySpreadConstraints for router pods, this overwrites global.seleniumGrid.topologySpreadConstraints parameter |

charts/selenium-grid/templates/video-manager/file-browser-deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ spec:
3434
{{- with .Values.videoManager.config.baseurl }}
3535
- name: FB_BASEURL
3636
value: {{ . | quote }}
37+
- name: FB_BASE_URL
38+
value: {{ . | quote }}
3739
{{- end }}
3840
{{- with .Values.videoManager.config.username }}
3941
- name: FB_USERNAME

charts/selenium-grid/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2122,7 +2122,7 @@ videoManager:
21222122
password: ""
21232123
# -- Use the noauth auther when using quick setup
21242124
noauth: true
2125-
# -- Specify extra environment variables for Router
2125+
# -- Specify extra environment variables for Router. You can pass any environment variables support by https://filebrowser.org/changelog.html
21262126
extraEnvironmentVariables: []
21272127
# -- Specify extra environment variables from ConfigMap and Secret for Router
21282128
extraEnvFrom: []

0 commit comments

Comments
 (0)