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

Commit

Permalink
Update tag in docs and files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
selenium-ci committed Sep 4, 2023
1 parent 19606ff commit 4d3861f
Show file tree
Hide file tree
Showing 19 changed files with 154 additions and 154 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ body:
attributes:
label: Docker Selenium version (tag)
description: What version of Docker Selenium are you using?
placeholder: 4.11.0-20230801? Please use the full tag, avoid "latest"
placeholder: 4.12.1-20230904? Please use the full tag, avoid "latest"
validations:
required: true
8 changes: 4 additions & 4 deletions NodeDocker/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
# start a container with the given image.
configs = [
"selenium/standalone-firefox:4.11.0-20230801", '{"browserName": "firefox", "platformName": "linux"}',
"selenium/standalone-chrome:4.11.0-20230801", '{"browserName": "chrome", "platformName": "linux"}',
"selenium/standalone-edge:4.11.0-20230801", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
"selenium/standalone-firefox:4.12.1-20230904", '{"browserName": "firefox", "platformName": "linux"}',
"selenium/standalone-chrome:4.12.1-20230904", '{"browserName": "chrome", "platformName": "linux"}',
"selenium/standalone-edge:4.12.1-20230904", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
]

# URL for connecting to the docker daemon
Expand All @@ -14,7 +14,7 @@ configs = [
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
url = "http://127.0.0.1:2375"
# Docker image used for video recording
video-image = "selenium/video:ffmpeg-4.3.1-20230801"
video-image = "selenium/video:ffmpeg-4.3.1-20230904"

# Uncomment the following section if you are running the node on a separate VM
# Fill out the placeholders with appropriate values
Expand Down
134 changes: 67 additions & 67 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion charts/selenium-grid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ All notable changes to this helm chart will be documented in this file.
- helm chart VolumeMounts & Volumes for Selenium hub (#1893) :: Yoga Yu

### Changed
- Update image tag to 4.11.0-20230801
- Update image tag to 4.12.1-20230904

## :heavy_check_mark: 0.19.0

Expand Down
10 changes: 5 additions & 5 deletions charts/selenium-grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ For now, global configuration supported is:

| Parameter | Default | Description |
|---------------------------------------|-------------------|---------------------------------------|
| `global.seleniumGrid.imageTag` | `4.11.0-20230801` | Image tag for all selenium components |
| `global.seleniumGrid.nodesImageTag` | `4.11.0-20230801` | Image tag for browser's nodes |
| `global.seleniumGrid.imageTag` | `4.12.1-20230904` | Image tag for all selenium components |
| `global.seleniumGrid.nodesImageTag` | `4.12.1-20230904` | Image tag for browser's nodes |
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
| `global.seleniumGrid.affinity` | `{}` | Affinity assigned globally |
Expand Down Expand Up @@ -108,7 +108,7 @@ This table contains the configuration parameters of the chart and their default
| `chromeNode.deploymentEnabled` | `true` | Enable creation of Deployment for chrome nodes |
| `chromeNode.replicas` | `1` | Number of chrome nodes |
| `chromeNode.imageName` | `selenium/node-chrome` | Image of chrome nodes |
| `chromeNode.imageTag` | `4.11.0-20230801` | Image of chrome nodes |
| `chromeNode.imageTag` | `4.12.1-20230904` | Image of chrome nodes |
| `chromeNode.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| `chromeNode.imagePullSecret` | `""` | Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) |
| `chromeNode.ports` | `[5555]` | Port list to enable on container |
Expand Down Expand Up @@ -143,7 +143,7 @@ This table contains the configuration parameters of the chart and their default
| `firefoxNode.deploymentEnabled` | `true` | Enable creation of Deployment for firefox nodes |
| `firefoxNode.replicas` | `1` | Number of firefox nodes |
| `firefoxNode.imageName` | `selenium/node-firefox` | Image of firefox nodes |
| `firefoxNode.imageTag` | `4.11.0-20230801` | Image of firefox nodes |
| `firefoxNode.imageTag` | `4.12.1-20230904` | Image of firefox nodes |
| `firefoxNode.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| `firefoxNode.imagePullSecret` | `""` | Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) |
| `firefoxNode.ports` | `[5555]` | Port list to enable on container |
Expand Down Expand Up @@ -178,7 +178,7 @@ This table contains the configuration parameters of the chart and their default
| `edgeNode.deploymentEnabled` | `true` | Enable creation of Deployment for edge nodes |
| `edgeNode.replicas` | `1` | Number of edge nodes |
| `edgeNode.imageName` | `selenium/node-edge` | Image of edge nodes |
| `edgeNode.imageTag` | `4.11.0-20230801` | Image of edge nodes |
| `edgeNode.imageTag` | `4.12.1-20230904` | Image of edge nodes |
| `edgeNode.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| `edgeNode.imagePullSecret` | `""` | Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) |
| `edgeNode.ports` | `[5555]` | Port list to enable on container |
Expand Down
22 changes: 11 additions & 11 deletions charts/selenium-grid/values.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
global:
seleniumGrid:
# Image tag for all selenium components
imageTag: 4.11.0-20230801
imageTag: 4.12.1-20230904
# Image tag for browser's nodes
nodesImageTag: 4.11.0-20230801
nodesImageTag: 4.12.1-20230904
# Pull secret for all components, can be overridden individually
imagePullSecret: ""

Expand Down Expand Up @@ -61,7 +61,7 @@ components:
# Router image name
imageName: selenium/router
# Router image tag (this overwrites global.seleniumGrid.imageTag parameter)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904

# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -112,7 +112,7 @@ components:
# Distributor image name
imageName: selenium/distributor
# Distributor image tag (this overwrites global.seleniumGrid.imageTag parameter)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904

# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -143,7 +143,7 @@ components:
# Event Bus image name
imageName: selenium/event-bus
# Event Bus image tag (this overwrites global.seleniumGrid.imageTag parameter)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904

# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -178,7 +178,7 @@ components:
# Session Map image name
imageName: selenium/sessions
# Session Map image tag (this overwrites global.seleniumGrid.imageTag parameter)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904

# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -208,7 +208,7 @@ components:
# Session Queue image name
imageName: selenium/session-queue
# Session Queue image tag (this overwrites global.seleniumGrid.imageTag parameter)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904

# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -258,7 +258,7 @@ hub:
# Selenium Hub image name
imageName: selenium/hub
# Selenium Hub image tag (this overwrites global.seleniumGrid.imageTag parameter)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
Expand Down Expand Up @@ -378,7 +378,7 @@ chromeNode:
# Image of chrome nodes
imageName: selenium/node-chrome
# Image of chrome nodes (this overwrites global.seleniumGrid.nodesImageTag)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
Expand Down Expand Up @@ -494,7 +494,7 @@ firefoxNode:
# Image of firefox nodes
imageName: selenium/node-firefox
# Image of firefox nodes (this overwrites global.seleniumGrid.nodesImageTag)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
Expand Down Expand Up @@ -607,7 +607,7 @@ edgeNode:
# Image of edge nodes
imageName: selenium/node-edge
# Image of edge nodes (this overwrites global.seleniumGrid.nodesImageTag)
# imageTag: 4.11.0-20230801
# imageTag: 4.12.1-20230904
# Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: IfNotPresent
# Image pull secret (see https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/)
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-v2-tracing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- "16686:16686"
- "14250:14250"
chrome:
image: selenium/node-chrome:4.11.0-20230801
image: selenium/node-chrome:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -23,7 +23,7 @@ services:
- "6900:5900"

edge:
image: selenium/node-edge:4.11.0-20230801
image: selenium/node-edge:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -37,7 +37,7 @@ services:
- "6901:5900"

firefox:
image: selenium/node-firefox:4.11.0-20230801
image: selenium/node-firefox:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -51,7 +51,7 @@ services:
- "6902:5900"

selenium-hub:
image: selenium/hub:4.11.0-20230801
image: selenium/hub:4.12.1-20230904
ports:
- "4442:4442"
- "4443:4443"
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: '2'
services:
chrome:
image: selenium/node-chrome:4.11.0-20230801
image: selenium/node-chrome:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -16,7 +16,7 @@ services:
- "6900:5900"

edge:
image: selenium/node-edge:4.11.0-20230801
image: selenium/node-edge:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -28,7 +28,7 @@ services:
- "6901:5900"

firefox:
image: selenium/node-firefox:4.11.0-20230801
image: selenium/node-firefox:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -40,7 +40,7 @@ services:
- "6902:5900"

selenium-hub:
image: selenium/hub:4.11.0-20230801
image: selenium/hub:4.12.1-20230904
ports:
- "4442:4442"
- "4443:4443"
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-v3-basicauth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
chrome:
image: selenium/node-chrome:4.11.0-20230801
image: selenium/node-chrome:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -14,7 +14,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

edge:
image: selenium/node-edge:4.11.0-20230801
image: selenium/node-edge:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -24,7 +24,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

firefox:
image: selenium/node-firefox:4.11.0-20230801
image: selenium/node-firefox:4.12.1-20230904
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -34,7 +34,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

selenium-hub:
image: selenium/hub:4.11.0-20230801
image: selenium/hub:4.12.1-20230904
container_name: selenium-hub
ports:
- "4442:4442"
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-v3-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
chrome:
image: selenium/node-chrome:4.11.0-20230801
image: selenium/node-chrome:4.12.1-20230904
shm_size: 2gb
volumes:
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
Expand All @@ -16,7 +16,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

edge:
image: selenium/node-edge:4.11.0-20230801
image: selenium/node-edge:4.12.1-20230904
shm_size: 2gb
volumes:
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
Expand All @@ -28,7 +28,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

firefox:
image: selenium/node-firefox:4.11.0-20230801
image: selenium/node-firefox:4.12.1-20230904
shm_size: 2gb
volumes:
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
Expand All @@ -40,7 +40,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

selenium-hub:
image: selenium/hub:4.11.0-20230801
image: selenium/hub:4.12.1-20230904
container_name: selenium-hub
volumes:
- ./selenium_server_deploy.jar:/opt/selenium/selenium-server.jar
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-v3-dynamic-grid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
node-docker:
image: selenium/node-docker:4.11.0-20230801
image: selenium/node-docker:4.12.1-20230904
volumes:
- ./assets:/opt/selenium/assets
- ./NodeDocker/config.toml:/opt/bin/config.toml
Expand All @@ -17,7 +17,7 @@ services:
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443

selenium-hub:
image: selenium/hub:4.11.0-20230801
image: selenium/hub:4.12.1-20230904
container_name: selenium-hub
ports:
- "4442:4442"
Expand Down

0 comments on commit 4d3861f

Please sign in to comment.