mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Added hostAliases option for selenium chart (#8526)
* added posiblity to add hostAliases to selenium nodes Signed-off-by: Alina Ionescu <alinaionescu85@gmail.com> * Updatded Chart version Signed-off-by: AlinaIo <alinaionescu85@gmail.com> Signed-off-by: IonescuA <alina.ionescu@haufe-lexware.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
1ce10908a7
commit
2b3b54b805
@@ -1,5 +1,5 @@
|
||||
name: selenium
|
||||
version: 0.14.0
|
||||
version: 0.15.0
|
||||
appVersion: 3.14.0
|
||||
description: Chart for selenium grid
|
||||
keywords:
|
||||
|
||||
@@ -43,6 +43,7 @@ The following table lists the configurable parameters of the Selenium chart and
|
||||
| Parameter | Description | Default |
|
||||
| --------- | ----------- | ------- |
|
||||
| `global.nodeselector` | Node label to be useed globally for scheduling of all images | `nil` |
|
||||
| `global.hostAliases` | A list of hostAliases, that contains ip and hostnames, to be used globally | `[]` |
|
||||
| `global.affinity` | Deployemnt affinities to be used globally for scheduling of all images | `nil` |
|
||||
| `global.tolerations` | Deployment tolerations to be used globally for scheduling of all images | `nil` |
|
||||
| `hub.image` | The selenium hub image | `selenium/hub` |
|
||||
|
||||
@@ -88,6 +88,8 @@ spec:
|
||||
{{ if .Values.chrome.volumes -}}
|
||||
{{ toYaml .Values.chrome.volumes | indent 8 }}
|
||||
{{- end }}
|
||||
hostAliases:
|
||||
{{ toYaml .Values.global.hostAliases | indent 8 }}
|
||||
nodeSelector:
|
||||
{{- if .Values.chrome.nodeSelector }}
|
||||
{{ toYaml .Values.chrome.nodeSelector | indent 8 }}
|
||||
|
||||
@@ -90,6 +90,8 @@ spec:
|
||||
{{ if .Values.chromeDebug.volumes -}}
|
||||
{{ toYaml .Values.chromeDebug.volumes | indent 8 }}
|
||||
{{- end }}
|
||||
hostAliases:
|
||||
{{ toYaml .Values.global.hostAliases | indent 8 }}
|
||||
nodeSelector:
|
||||
{{- if .Values.chromeDebug.nodeSelector }}
|
||||
{{ toYaml .Values.chromeDebug.nodeSelector | indent 8 }}
|
||||
|
||||
@@ -80,6 +80,8 @@ spec:
|
||||
{{- end }}
|
||||
resources:
|
||||
{{ toYaml .Values.firefox.resources | indent 12 }}
|
||||
hostAliases:
|
||||
{{ toYaml .Values.global.hostAliases | indent 8 }}
|
||||
nodeSelector:
|
||||
{{- if .Values.firefox.nodeSelector }}
|
||||
{{ toYaml .Values.firefox.nodeSelector | indent 8 }}
|
||||
|
||||
@@ -82,6 +82,8 @@ spec:
|
||||
{{- end }}
|
||||
resources:
|
||||
{{ toYaml .Values.firefoxDebug.resources | indent 12 }}
|
||||
hostAliases:
|
||||
{{ toYaml .Values.global.hostAliases | indent 8 }}
|
||||
nodeSelector:
|
||||
{{- if .Values.firefoxDebug.nodeSelector }}
|
||||
{{ toYaml .Values.firefoxDebug.nodeSelector | indent 8 }}
|
||||
|
||||
@@ -4,6 +4,8 @@ global:
|
||||
## can also be spceifed at chart level see below
|
||||
nodeSelector:
|
||||
# label: value
|
||||
## Configure HostAliases
|
||||
hostAliases: []
|
||||
affinity:
|
||||
# label: value
|
||||
tolerations:
|
||||
|
||||
Reference in New Issue
Block a user