Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit c60728e

Browse files
efrankendiemol
andauthored
Remove eventbus from sessionqueue environment variables in docker compose yaml (SeleniumHQ#1693)
* Remove references to event bus from session queue Removed from helm charts and docker compose yamls * Remove references to event bus from session queue Removed from helm charts and docker compose yamls. Environment variables for event bus are no longer needed by session queue. Co-authored-by: Diego Molina <[email protected]>
1 parent 0c0f45a commit c60728e

File tree

3 files changed

+2
-16
lines changed

3 files changed

+2
-16
lines changed

charts/selenium-grid/templates/session-queuer-deployment.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ spec:
3232
{{- with .Values.components.extraEnvironmentVariables }}
3333
env: {{- tpl (toYaml .) $ | nindent 12 }}
3434
{{- end }}
35+
{{- with .Values.components.extraEnvFrom }}
3536
envFrom:
36-
- configMapRef:
37-
name: {{ .Values.busConfigMap.name }}
38-
{{- with .Values.components.extraEnvFrom }}
3937
{{- toYaml . | nindent 12 }}
40-
{{- end }}
38+
{{- end }}
4139
ports:
4240
- containerPort: {{ .Values.components.sessionQueue.port }}
4341
protocol: TCP

docker-compose-v3-full-grid-dev.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ services:
3434
container_name: selenium-session-queue
3535
ports:
3636
- "5559:5559"
37-
depends_on:
38-
- selenium-event-bus
39-
environment:
40-
- SE_EVENT_BUS_HOST=selenium-event-bus
41-
- SE_EVENT_BUS_PUBLISH_PORT=4442
42-
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
4337

4438
selenium-distributor:
4539
image: selenium/distributor:4.5.0-20221004

docker-compose-v3-full-grid.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ services:
2828
container_name: selenium-session-queue
2929
ports:
3030
- "5559:5559"
31-
depends_on:
32-
- selenium-event-bus
33-
environment:
34-
- SE_EVENT_BUS_HOST=selenium-event-bus
35-
- SE_EVENT_BUS_PUBLISH_PORT=4442
36-
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
3731

3832
selenium-distributor:
3933
image: selenium/distributor:4.5.0-20221004

0 commit comments

Comments
 (0)