-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ndviet/dynamic-grid
Add WebDAV service to access and browse videos and data of Node
- Loading branch information
Showing
11 changed files
with
121 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
...m-grid/src/main/resources/patch-selenium-grid/patch/configurations/Video/supervisord.conf
This file was deleted.
Oops, something went wrong.
95 changes: 0 additions & 95 deletions
95
...-selenium-grid/src/main/resources/patch-selenium-grid/patch/configurations/Video/video.sh
This file was deleted.
Oops, something went wrong.
79 changes: 0 additions & 79 deletions
79
...ium-grid/src/main/resources/patch-selenium-grid/patch/configurations/Video/video_ready.py
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
...lenium-grid/src/main/resources/patch-selenium-grid/patch/templates/tracing-configmap.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: selenium-tracing-config | ||
namespace: {{ .Release.Namespace }} | ||
{{- with .Values.nodeConfigMap.annotations }} | ||
annotations: {{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{- include "seleniumGrid.commonLabels" . | nindent 4 }} | ||
{{- with .Values.customLabels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
data: | ||
SE_ENABLE_TRACING: {{ (.Values.global.seleniumGrid.tracing).enabled | default "false" | quote }} | ||
{{- $jaegerEndpoint := (.Values.global.seleniumGrid.tracing).jaegerEndpoint | default (printf "http://%s-jaeger-all-in-one-headless:14250" .Release.Name) }} | ||
{{- $jaegerEndpoint := tpl $jaegerEndpoint . }} | ||
{{- $JAVA_OPTS := printf "-Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=%s -Dotel.resource.attributes=service.name=selenium -Dotel.java.global-autoconfigure.enabled=true" $jaegerEndpoint }} | ||
JAVA_OPTS: {{ $JAVA_OPTS | quote }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
scalable-selenium-grid/src/main/resources/scalable-selenium-grid/templates/NOTES.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
TestOps Autoscaling Selenium Grid ecosystem deployed successfully. | ||
|
||
{{- $pvEnabled := index .Values "grid-pvc" "selenium-node" "persistence" "pv" "enabled" }} | ||
{{- if and .Values.global.seleniumGrid.persistence.enabled $pvEnabled }} | ||
Noted: Please ensure local hostPath directory is created and set permissions correctly. If not created yet, kindly execute below commands once! | ||
{{- $hostPathDir := index .Values "grid-pvc" "selenium-node" "persistence" "pv" "hostPath" "path" }} | ||
--- | ||
sudo mkdir -p {{ $hostPathDir }} | ||
sudo chown 999 {{ $hostPathDir }} | ||
sudo chmod 755 {{ $hostPathDir }} | ||
--- | ||
{{- end }} |
Empty file.
Oops, something went wrong.