You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/selenium-grid/CONFIGURATION.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -655,6 +655,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
655
655
| relayNode.sidecars | list |`[]`| It is used to add sidecars proxy in the same pod of the browser node. It means it will add a new container to the deployment itself. It should be set using the --set-json option |
656
656
| relayNode.videoRecorder | object |`{}`| Override specific video recording settings for edge node |
657
657
| videoRecorder.enabled | bool |`false`| Enable video recording in all browser nodes |
658
+
| videoRecorder.sidecarContainer | bool |`false`| Video recorder run as a sidecar container (2 containers in the same pod), or a single container with browser and recorder https://github.com/SeleniumHQ/docker-selenium/discussions/2539|
658
659
| videoRecorder.name | string |`"video"`| Container name is set to resource specs |
659
660
| videoRecorder.imageRegistry | string |`nil`| Registry to pull the image (this overwrites global.seleniumGrid.imageRegistry parameter) |
660
661
| videoRecorder.imageName | string |`"video"`| Image of video recorder |
Copy file name to clipboardExpand all lines: charts/selenium-grid/README.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -683,6 +683,14 @@ videoRecorder:
683
683
enabled: true
684
684
```
685
685
686
+
From chart version `0.44.0+`, by default, the video recorder is not running as sidecar container anymore. Recording function will be performed in browser node container itself (check out the [implementation](https://github.com/SeleniumHQ/docker-selenium/discussions/2539)).
687
+
If you want to enable the video recorder as a sidecar container, you can set the following values:
688
+
689
+
```yaml
690
+
videoRecorder:
691
+
sidecarContainer: true
692
+
```
693
+
686
694
At chart deployment level, that config will enable video container always. In addition, you can disable video recording process via session capability `se:recordVideo`. For example in Python binding:
0 commit comments