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

Commit f8f7132

Browse files
committed
Update tag in docs and files
1 parent fc20682 commit f8f7132

20 files changed

+166
-166
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ body:
5656
attributes:
5757
label: Docker Selenium version (image tag)
5858
description: What version of Docker Selenium are you using?
59-
placeholder: 4.17.0-20240123? Please use the full tag, avoid "latest"
59+
placeholder: 4.18.0-20240220? Please use the full tag, avoid "latest"
6060
validations:
6161
required: true
6262
- type: input

NodeDocker/config.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
33
# start a container with the given image.
44
configs = [
5-
"selenium/standalone-firefox:4.17.0-20240123", '{"browserName": "firefox", "platformName": "linux"}',
6-
"selenium/standalone-chrome:4.17.0-20240123", '{"browserName": "chrome", "platformName": "linux"}',
7-
"selenium/standalone-edge:4.17.0-20240123", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
5+
"selenium/standalone-firefox:4.18.0-20240220", '{"browserName": "firefox", "platformName": "linux"}',
6+
"selenium/standalone-chrome:4.18.0-20240220", '{"browserName": "chrome", "platformName": "linux"}',
7+
"selenium/standalone-edge:4.18.0-20240220", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
88
]
99

1010
# URL for connecting to the docker daemon
@@ -14,7 +14,7 @@ configs = [
1414
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
1515
url = "http://127.0.0.1:2375"
1616
# Docker image used for video recording
17-
video-image = "selenium/video:ffmpeg-6.1-20240123"
17+
video-image = "selenium/video:ffmpeg-6.1-20240220"
1818

1919
# Uncomment the following section if you are running the node on a separate VM
2020
# Fill out the placeholders with appropriate values

README.md

Lines changed: 67 additions & 67 deletions
Large diffs are not rendered by default.

charts/selenium-grid/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: selenium-grid
33
description: A Helm chart for creating a Selenium Grid Server in Kubernetes
44
type: application
5-
version: 0.27.0
6-
appVersion: 4.17.0-20240123
5+
version: 0.28.0
6+
appVersion: 4.18.0-20240220
77
icon: https://github.com/SeleniumHQ/docker-selenium/raw/trunk/logo.png
88
dependencies:
99
- repository: https://kedacore.github.io/charts

charts/selenium-grid/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,9 @@ For now, global configuration supported is:
276276
|---------------------------------------|-----------------------|----------------------------------------|
277277
| `global.K8S_PUBLIC_IP` | `""` | Public IP of the host running K8s |
278278
| `global.seleniumGrid.imageRegistry` | `selenium` | Distribution registry to pull images |
279-
| `global.seleniumGrid.imageTag` | `4.17.0-20240123` | Image tag for all selenium components |
280-
| `global.seleniumGrid.nodesImageTag` | `4.17.0-20240123` | Image tag for browser's nodes |
281-
| `global.seleniumGrid.videoImageTag` | `ffmpeg-6.1-20240123` | Image tag for browser's video recorder |
279+
| `global.seleniumGrid.imageTag` | `4.18.0-20240220` | Image tag for all selenium components |
280+
| `global.seleniumGrid.nodesImageTag` | `4.18.0-20240220` | Image tag for browser's nodes |
281+
| `global.seleniumGrid.videoImageTag` | `ffmpeg-6.1-20240220` | Image tag for browser's video recorder |
282282
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
283283
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
284284
| `global.seleniumGrid.affinity` | `{}` | Affinity assigned globally |
@@ -686,7 +686,7 @@ This table contains the configuration parameters of the chart and their default
686686
| `chromeNode.replicas` | `1` | Number of chrome nodes. Disabled if autoscaling is enabled. |
687687
| `chromeNode.imageRegistry` | `nil` | Distribution registry to pull the image (this overwrites `.global.seleniumGrid.imageRegistry` value) |
688688
| `chromeNode.imageName` | `node-chrome` | Image of chrome nodes |
689-
| `chromeNode.imageTag` | `4.17.0-20240123` | Image of chrome nodes |
689+
| `chromeNode.imageTag` | `4.18.0-20240220` | Image of chrome nodes |
690690
| `chromeNode.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
691691
| `chromeNode.imagePullSecret` | `""` | Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) |
692692
| `chromeNode.ports` | `[]` | Extra ports list to enable on container (e.g VNC, NoVNC, SSH if any) |
@@ -729,7 +729,7 @@ This table contains the configuration parameters of the chart and their default
729729
| `firefoxNode.replicas` | `1` | Number of firefox nodes. Disabled if autoscaling is enabled. |
730730
| `firefoxNode.imageRegistry` | `nil` | Distribution registry to pull the image (this overwrites `.global.seleniumGrid.imageRegistry` value) |
731731
| `firefoxNode.imageName` | `node-firefox` | Image of firefox nodes |
732-
| `firefoxNode.imageTag` | `4.17.0-20240123` | Image of firefox nodes |
732+
| `firefoxNode.imageTag` | `4.18.0-20240220` | Image of firefox nodes |
733733
| `firefoxNode.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
734734
| `firefoxNode.imagePullSecret` | `""` | Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) |
735735
| `firefoxNode.ports` | `[]` | Extra ports list to enable on container (e.g VNC, NoVNC, SSH if any) |
@@ -772,7 +772,7 @@ This table contains the configuration parameters of the chart and their default
772772
| `edgeNode.replicas` | `1` | Number of edge nodes. Disabled if autoscaling is enabled. |
773773
| `edgeNode.imageRegistry` | `nil` | Distribution registry to pull the image (this overwrites `.global.seleniumGrid.imageRegistry` value) |
774774
| `edgeNode.imageName` | `node-edge` | Image of edge nodes |
775-
| `edgeNode.imageTag` | `4.17.0-20240123` | Image of edge nodes |
775+
| `edgeNode.imageTag` | `4.18.0-20240220` | Image of edge nodes |
776776
| `edgeNode.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
777777
| `edgeNode.imagePullSecret` | `""` | Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) |
778778
| `edgeNode.ports` | `[]` | Extra ports list to enable on container (e.g VNC, NoVNC, SSH if any) |
@@ -813,7 +813,7 @@ This table contains the configuration parameters of the chart and their default
813813
| `videoRecorder.enabled` | `false` | Enable video recorder for node |
814814
| `videoRecorder.imageRegistry` | `nil` | Distribution registry to pull the image (this overwrites `.global.seleniumGrid.imageRegistry` value) |
815815
| `videoRecorder.imageName` | `video` | Selenium video recorder image name |
816-
| `videoRecorder.imageTag` | `ffmpeg-6.1-20240123` | Image tag of video recorder |
816+
| `videoRecorder.imageTag` | `ffmpeg-6.1-20240220` | Image tag of video recorder |
817817
| `videoRecorder.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
818818
| `videoRecorder.uploader.enabled` | `false` | Enable the uploader for videos |
819819
| `videoRecorder.uploader.destinationPrefix` | `` | Destination for uploading video file. It is following `rclone` config |

charts/selenium-grid/values.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ global:
77
# Image registry for all selenium components
88
imageRegistry: selenium
99
# Image tag for all selenium components
10-
imageTag: 4.17.0-20240123
10+
imageTag: 4.18.0-20240220
1111
# Image tag for browser's nodes
12-
nodesImageTag: 4.17.0-20240123
12+
nodesImageTag: 4.18.0-20240220
1313
# Image tag for browser's video recorder
14-
videoImageTag: ffmpeg-6.1-20240123
14+
videoImageTag: ffmpeg-6.1-20240220
1515
# Pull secret for all components, can be overridden individually
1616
imagePullSecret: ""
1717
# Log level for all components. Possible values describe here: https://www.selenium.dev/documentation/grid/configuration/cli_options/#logging
@@ -182,7 +182,7 @@ components:
182182
# Router image name
183183
imageName: router
184184
# Router image tag (this overwrites global.seleniumGrid.imageTag parameter)
185-
# imageTag: 4.17.0-20240123
185+
# imageTag: 4.18.0-20240220
186186

187187
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
188188
imagePullPolicy: IfNotPresent
@@ -244,7 +244,7 @@ components:
244244
# Distributor image name
245245
imageName: distributor
246246
# Distributor image tag (this overwrites global.seleniumGrid.imageTag parameter)
247-
# imageTag: 4.17.0-20240123
247+
# imageTag: 4.18.0-20240220
248248

249249
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
250250
imagePullPolicy: IfNotPresent
@@ -277,7 +277,7 @@ components:
277277
# Event Bus image name
278278
imageName: event-bus
279279
# Event Bus image tag (this overwrites global.seleniumGrid.imageTag parameter)
280-
# imageTag: 4.17.0-20240123
280+
# imageTag: 4.18.0-20240220
281281

282282
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
283283
imagePullPolicy: IfNotPresent
@@ -316,7 +316,7 @@ components:
316316
# Session Map image name
317317
imageName: sessions
318318
# Session Map image tag (this overwrites global.seleniumGrid.imageTag parameter)
319-
# imageTag: 4.17.0-20240123
319+
# imageTag: 4.18.0-20240220
320320

321321
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
322322
imagePullPolicy: IfNotPresent
@@ -347,7 +347,7 @@ components:
347347
# Session Queue image name
348348
imageName: session-queue
349349
# Session Queue image tag (this overwrites global.seleniumGrid.imageTag parameter)
350-
# imageTag: 4.17.0-20240123
350+
# imageTag: 4.18.0-20240220
351351

352352
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
353353
imagePullPolicy: IfNotPresent
@@ -401,7 +401,7 @@ hub:
401401
# Selenium Hub image name
402402
imageName: hub
403403
# Selenium Hub image tag (this overwrites global.seleniumGrid.imageTag parameter)
404-
# imageTag: 4.17.0-20240123
404+
# imageTag: 4.18.0-20240220
405405
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
406406
imagePullPolicy: IfNotPresent
407407
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
@@ -573,7 +573,7 @@ chromeNode:
573573
# Image of chrome nodes
574574
imageName: node-chrome
575575
# Image of chrome nodes (this overwrites global.seleniumGrid.nodesImageTag)
576-
# imageTag: 4.17.0-20240123
576+
# imageTag: 4.18.0-20240220
577577
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
578578
imagePullPolicy: IfNotPresent
579579
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
@@ -735,7 +735,7 @@ firefoxNode:
735735
# Image of firefox nodes
736736
imageName: node-firefox
737737
# Image of firefox nodes (this overwrites global.seleniumGrid.nodesImageTag)
738-
# imageTag: 4.17.0-20240123
738+
# imageTag: 4.18.0-20240220
739739
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
740740
imagePullPolicy: IfNotPresent
741741
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
@@ -895,7 +895,7 @@ edgeNode:
895895
# Image of edge nodes
896896
imageName: node-edge
897897
# Image of edge nodes (this overwrites global.seleniumGrid.nodesImageTag)
898-
# imageTag: 4.17.0-20240123
898+
# imageTag: 4.18.0-20240220
899899
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
900900
imagePullPolicy: IfNotPresent
901901
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
@@ -1044,7 +1044,7 @@ videoRecorder:
10441044
# Image of video recorder
10451045
imageName: video
10461046
# Image of video recorder
1047-
# imageTag: ffmpeg-6.1-20240123
1047+
# imageTag: ffmpeg-6.1-20240220
10481048
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
10491049
imagePullPolicy: IfNotPresent
10501050
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)

docker-compose-v2-tracing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
- "16686:16686"
1010
- "4317:4317"
1111
chrome:
12-
image: selenium/node-chrome:4.17.0-20240123
12+
image: selenium/node-chrome:4.18.0-20240220
1313
shm_size: 2gb
1414
depends_on:
1515
- selenium-hub
@@ -24,7 +24,7 @@ services:
2424
- "6900:5900"
2525

2626
edge:
27-
image: selenium/node-edge:4.17.0-20240123
27+
image: selenium/node-edge:4.18.0-20240220
2828
shm_size: 2gb
2929
depends_on:
3030
- selenium-hub
@@ -39,7 +39,7 @@ services:
3939
- "6901:5900"
4040

4141
firefox:
42-
image: selenium/node-firefox:4.17.0-20240123
42+
image: selenium/node-firefox:4.18.0-20240220
4343
shm_size: 2gb
4444
depends_on:
4545
- selenium-hub
@@ -54,7 +54,7 @@ services:
5454
- "6902:5900"
5555

5656
selenium-hub:
57-
image: selenium/hub:4.17.0-20240123
57+
image: selenium/hub:4.18.0-20240220
5858
ports:
5959
- "4442:4442"
6060
- "4443:4443"

docker-compose-v2.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
version: '2'
55
services:
66
chrome:
7-
image: selenium/node-chrome:4.17.0-20240123
7+
image: selenium/node-chrome:4.18.0-20240220
88
shm_size: 2gb
99
depends_on:
1010
- selenium-hub
@@ -16,7 +16,7 @@ services:
1616
- "6900:5900"
1717

1818
edge:
19-
image: selenium/node-edge:4.17.0-20240123
19+
image: selenium/node-edge:4.18.0-20240220
2020
shm_size: 2gb
2121
depends_on:
2222
- selenium-hub
@@ -28,7 +28,7 @@ services:
2828
- "6901:5900"
2929

3030
firefox:
31-
image: selenium/node-firefox:4.17.0-20240123
31+
image: selenium/node-firefox:4.18.0-20240220
3232
shm_size: 2gb
3333
depends_on:
3434
- selenium-hub
@@ -40,7 +40,7 @@ services:
4040
- "6902:5900"
4141

4242
selenium-hub:
43-
image: selenium/hub:4.17.0-20240123
43+
image: selenium/hub:4.18.0-20240220
4444
ports:
4545
- "4442:4442"
4646
- "4443:4443"

docker-compose-v3-basicauth.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
version: "3"
55
services:
66
chrome:
7-
image: selenium/node-chrome:4.17.0-20240123
7+
image: selenium/node-chrome:4.18.0-20240220
88
shm_size: 2gb
99
depends_on:
1010
- selenium-hub
@@ -14,7 +14,7 @@ services:
1414
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
1515

1616
edge:
17-
image: selenium/node-edge:4.17.0-20240123
17+
image: selenium/node-edge:4.18.0-20240220
1818
shm_size: 2gb
1919
depends_on:
2020
- selenium-hub
@@ -24,7 +24,7 @@ services:
2424
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
2525

2626
firefox:
27-
image: selenium/node-firefox:4.17.0-20240123
27+
image: selenium/node-firefox:4.18.0-20240220
2828
shm_size: 2gb
2929
depends_on:
3030
- selenium-hub
@@ -34,7 +34,7 @@ services:
3434
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
3535

3636
selenium-hub:
37-
image: selenium/hub:4.17.0-20240123
37+
image: selenium/hub:4.18.0-20240220
3838
container_name: selenium-hub
3939
ports:
4040
- "4442:4442"

docker-compose-v3-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
version: "3"
55
services:
66
chrome:
7-
image: selenium/node-chrome:4.17.0-20240123
7+
image: selenium/node-chrome:4.18.0-20240220
88
shm_size: 2gb
99
volumes:
1010
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
@@ -16,7 +16,7 @@ services:
1616
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
1717

1818
edge:
19-
image: selenium/node-edge:4.17.0-20240123
19+
image: selenium/node-edge:4.18.0-20240220
2020
shm_size: 2gb
2121
volumes:
2222
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
@@ -28,7 +28,7 @@ services:
2828
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
2929

3030
firefox:
31-
image: selenium/node-firefox:4.17.0-20240123
31+
image: selenium/node-firefox:4.18.0-20240220
3232
shm_size: 2gb
3333
volumes:
3434
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
@@ -40,7 +40,7 @@ services:
4040
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
4141

4242
selenium-hub:
43-
image: selenium/hub:4.17.0-20240123
43+
image: selenium/hub:4.18.0-20240220
4444
container_name: selenium-hub
4545
volumes:
4646
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar

0 commit comments

Comments
 (0)