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: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -639,7 +639,7 @@ If your test name is handled by the test framework, and it is unique for sure, y
639
639
640
640
File name will be trimmed to 255 characters to avoid long file names. Moreover, `space` character will be replaced by `_` and only characters alphabets, numbers, `-` (hyphen), `_` (underscore) are retained in the file name.
641
641
642
-
The trim regex is able to be customized by setting `SE_VIDEO_FILE_NAME_TRIM_REGEX` environment variable. The default value is `[:alnum:]-_`. The regex should be compatible with the `tr`commandin bash.
642
+
The trim regex is able to be customized by setting `SE_VIDEO_FILE_NAME_TRIM_REGEX` environment variable. The default value is `[^a-zA-Z0-9-_]`. The regex should be compatible with Python `re.compile()` function.
643
643
644
644
At deployment level, the recorder container is up always. In addition, you can disable video recording process via session capability `se:recordVideo`. For example in Python binding:
Copy file name to clipboardExpand all lines: charts/selenium-grid/CONFIGURATION.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -672,6 +672,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
672
672
| videoRecorder.uploader.configFileName | string |`"upload.conf"`| Uploader config file name |
673
673
| videoRecorder.uploader.entryPointFileName | string |`"upload.sh"`| Uploader entry point file name |
674
674
| videoRecorder.uploader.secrets | string |`nil`| For environment variables used in uploader which contains sensitive information, store in secret and refer envFrom Set config for rclone via ENV var with format: RCLONE_CONFIG_ + name of remote + _ + name of config file option (make it all uppercase) |
675
+
| videoRecorder.uploader.extraEnvFrom | list |`[]`| Custom environment variables by sourcing entire configMap, Secret, etc. for uploader |
675
676
| videoRecorder.ports | list |`[9000]`| Video recording container port |
676
677
| videoRecorder.resources.requests | object |`{"cpu":"0.1","memory":"128Mi"}`| Request resources for video recorder pods |
677
678
| videoRecorder.resources.limits | object |`{"cpu":"0.5","memory":"1Gi"}`| Limit resources for video recorder pods |
0 commit comments