diff --git a/stable/selenium/Chart.yaml b/stable/selenium/Chart.yaml index 80ea08e4df..a73d092aac 100644 --- a/stable/selenium/Chart.yaml +++ b/stable/selenium/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: selenium -version: 1.1.1 +version: 1.1.2 appVersion: 3.141.59 description: Chart for selenium grid keywords: diff --git a/stable/selenium/README.md b/stable/selenium/README.md index e6bdb6c5bf..83ad065e40 100644 --- a/stable/selenium/README.md +++ b/stable/selenium/README.md @@ -55,6 +55,7 @@ The following table lists the configurable parameters of the Selenium chart and | `hub.servicePort` | The port the hub Service listens on | `4444` | | `hub.nodePort` | The port the hub is exposed when Nodeport mode is selected | `nil` | | `hub.podAnnotations` | Annotations on the hub pod | `{}` | +| `hub.podLabels` | Additionals labels to the hub pod | `{}`| | `hub.securityContext` | SecurityContext on the hub pod | `{"runAsUser": 1000, "fsGroup": 1000}` | | `hub.extraEnvs` | Any additional environment variables to set in the pods | `[]` | | `hub.javaOpts` | The java options for the selenium hub JVM, default sets the maximum heap size to 400 mb | `-Xmx400m` | @@ -94,6 +95,7 @@ The following table lists the configurable parameters of the Selenium chart and | `chrome.enableLivenessProbe` | When true will add a liveness check to the pod | `false` | | `chrome.waitForRunningSessions` | When true will wait for current running sessions to finish before terminating the pod | `false` | | `chrome.podAnnotations` | Annotations on the chrome pods | `{}` | +| `chrome.podLabels` | Additional labels on the chrome pods | `{}` | | `chrome.securityContext` | SecurityContext on the chrome pods | `{"runAsUser": 1000, "fsGroup": 1000}` | | `chrome.extraEnvs` | Any additional environment variables to set in the pods | `[]` | | `chrome.javaOpts` | The java options for the selenium node chrome JVM, default sets the maximum heap size to 900 mb | `-Xmx900m` | @@ -124,6 +126,7 @@ The following table lists the configurable parameters of the Selenium chart and | `chromeDebug.enableLivenessProbe` | When true will add a liveness check to the pod | `false` | | `chromeDebug.waitForRunningSessions` | When true will wait for current running sessions to finish before terminating the pod | `false` | | `chromeDebug.podAnnotations` | Annotations on the Chrome debug pod | `{}` | +| `chromeDebug.podLabels` | Additional labels on the Chrome debug pods | `{}` | | `chromeDebug.securityContext` | SecurityContext on the Chrome debug pods | `{"runAsUser": 1000, "fsGroup": 1000}` | | `chromeDebug.extraEnvs` | Any additional environment variables to set in the pods | `[]` | | `chromeDebug.javaOpts` | The java options for a selenium node chrome debug JVM, default sets the max heap size to 900 mb | `-Xmx900m` | @@ -154,6 +157,7 @@ The following table lists the configurable parameters of the Selenium chart and | `firefox.enableLivenessProbe` | When true will add a liveness check to the pod | `false` | | `firefox.waitForRunningSessions` | When true will wait for current running sessions to finish before terminating the pod | `false` | | `firefox.podAnnotations` | Annotations on the firefox pods | `{}` | +| `firefox.podLabels` | Additional labels on the firefox pods | `{}` | | `firefox.securityContext` | SecurityContext on the firefox pods | `{"runAsUser": 1000, "fsGroup": 1000}` | | `firefox.extraEnvs` | Any additional environment variables to set in the pods | `[]` | | `firefox.javaOpts` | The java options for a selenium node firefox JVM, default sets the max heap size to 900 mb | `-Xmx900m` | @@ -182,6 +186,7 @@ The following table lists the configurable parameters of the Selenium chart and | `firefoxDebug.enableLivenessProbe` | When true will add a liveness check to the pod | `false` | | `firefoxDebug.waitForRunningSessions` | When true will wait for current running sessions to finish before terminating the pod | `false` | | `firefoxDebug.podAnnotations` | Annotations on the firefox debug pods | `{}` | +| `firefoxDebug.podLabels` | Additional labels on the firefox debug pods | `{}` | | `firefoxDebug.securityContext` | SecurityContext on the firefox debug pods | `{"runAsUser": 1000, "fsGroup": 1000}` | | `firefoxDebug.extraEnvs` | Any additional environment variables to set in the pods | `[]` | | `firefoxDebug.javaOpts` | The java options for a selenium node firefox debug JVM, default sets the max heap size to 900 mb | `-Xmx900m` | diff --git a/stable/selenium/templates/chrome-daemonset.yaml b/stable/selenium/templates/chrome-daemonset.yaml index c3a8083c18..6eaacb2562 100644 --- a/stable/selenium/templates/chrome-daemonset.yaml +++ b/stable/selenium/templates/chrome-daemonset.yaml @@ -17,6 +17,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.chrome.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.chrome.podAnnotations }} annotations: {{ toYaml .Values.chrome.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/chrome-deployment.yaml b/stable/selenium/templates/chrome-deployment.yaml index 3dc1606661..94fa433327 100644 --- a/stable/selenium/templates/chrome-deployment.yaml +++ b/stable/selenium/templates/chrome-deployment.yaml @@ -18,6 +18,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.chrome.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.chrome.podAnnotations }} annotations: {{ toYaml .Values.chrome.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/chromeDebug-daemonset.yaml b/stable/selenium/templates/chromeDebug-daemonset.yaml index 2caa7d4ab8..c0a4b85c1d 100644 --- a/stable/selenium/templates/chromeDebug-daemonset.yaml +++ b/stable/selenium/templates/chromeDebug-daemonset.yaml @@ -17,6 +17,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.chromeDebug.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.chromeDebug.podAnnotations }} annotations: {{ toYaml .Values.chromeDebug.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/chromeDebug-deployment.yaml b/stable/selenium/templates/chromeDebug-deployment.yaml index f83e64c437..2fa0ce62d2 100644 --- a/stable/selenium/templates/chromeDebug-deployment.yaml +++ b/stable/selenium/templates/chromeDebug-deployment.yaml @@ -18,6 +18,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.chromeDebug.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.chromeDebug.podAnnotations }} annotations: {{ toYaml .Values.chromeDebug.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/firefox-daemonset.yaml b/stable/selenium/templates/firefox-daemonset.yaml index 5a457e0e01..81477a6055 100644 --- a/stable/selenium/templates/firefox-daemonset.yaml +++ b/stable/selenium/templates/firefox-daemonset.yaml @@ -17,6 +17,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.firefox.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.firefox.podAnnotations }} annotations: {{ toYaml .Values.firefox.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/firefox-deployment.yaml b/stable/selenium/templates/firefox-deployment.yaml index 05245a40ca..23d6ebec9f 100644 --- a/stable/selenium/templates/firefox-deployment.yaml +++ b/stable/selenium/templates/firefox-deployment.yaml @@ -18,6 +18,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.firefox.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.firefox.podAnnotations }} annotations: {{ toYaml .Values.firefox.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/firefoxDebug-daemonset.yaml b/stable/selenium/templates/firefoxDebug-daemonset.yaml index cb31f59106..64e0dc9a32 100644 --- a/stable/selenium/templates/firefoxDebug-daemonset.yaml +++ b/stable/selenium/templates/firefoxDebug-daemonset.yaml @@ -18,6 +18,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.firefoxDebug.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.firefoxDebug.podAnnotations }} annotations: {{ toYaml .Values.firefoxDebug.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/firefoxDebug-deployment.yaml b/stable/selenium/templates/firefoxDebug-deployment.yaml index fd19fcf27c..c15f59a2d3 100644 --- a/stable/selenium/templates/firefoxDebug-deployment.yaml +++ b/stable/selenium/templates/firefoxDebug-deployment.yaml @@ -18,6 +18,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.firefoxDebug.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.firefoxDebug.podAnnotations }} annotations: {{ toYaml .Values.firefoxDebug.podAnnotations | indent 8 }} diff --git a/stable/selenium/templates/hub-deployment.yaml b/stable/selenium/templates/hub-deployment.yaml index e1705dfdf3..a0a1e44b59 100644 --- a/stable/selenium/templates/hub-deployment.yaml +++ b/stable/selenium/templates/hub-deployment.yaml @@ -17,6 +17,9 @@ spec: chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" + {{- with .Values.hub.podLabels }} + {{ toYaml .| indent 2 }} + {{- end }} {{- if .Values.hub.podAnnotations }} annotations: {{ toYaml .Values.hub.podAnnotations | indent 8 }} diff --git a/stable/selenium/values.yaml b/stable/selenium/values.yaml index c82d64d245..d8862e2fcb 100644 --- a/stable/selenium/values.yaml +++ b/stable/selenium/values.yaml @@ -93,6 +93,8 @@ hub: ## Configure annotations on the hub pod podAnnotations: {} + ## Configure labels on the hub pod + podLabels: {} ## The type of service to create ## Values: ClusterIP, NodePort, LoadBalancer, or ExternalName @@ -181,6 +183,8 @@ chrome: ## Configure annotations on the chrome pods podAnnotations: {} + ## Configure Labels on the chrome pods + podLabels: {} # Configure security context on the chrome pods # securityContext: @@ -286,6 +290,8 @@ chromeDebug: ## Configure annotations on the chrome debug pods podAnnotations: {} + ## Configure labels on the chrome debug pods + podLabels: {} # Configure security context on the chrome debug pods # securityContext: @@ -390,6 +396,8 @@ firefox: ## Configure annotations on the firefox pods podAnnotations: {} + ## Configure labels on the firefox pods + podLabels: {} # Configure security context on the firefox pods # securityContext: @@ -481,6 +489,8 @@ firefoxDebug: ## Configure annotations on the firefox debug pods podAnnotations: {} + ## Configure labels on the firefox debug pods + podLabels: {} # Configure security context on the firefox debug pods # securityContext: