[stable/keycloak] Add option to disable test pod (#12214)

Signed-off-by: Matteo Gazzetta <matteo_gazzetta@hotmail.it>
This commit is contained in:
Matteo Gazzetta
2019-03-14 06:40:31 -07:00
committed by Kubernetes Prow Robot
parent 7b2f828c02
commit 2376af9f38
5 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: keycloak
version: 4.6.0
version: 4.6.1
appVersion: 4.8.3.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
+1
View File
@@ -101,6 +101,7 @@ Parameter | Description | Default
`postgresql.postgresUser` | The PostgreSQL user (if `keycloak.persistence.deployPostgres=true`) | `keycloak`
`postgresql.postgresPassword` | The PostgreSQL password (if `keycloak.persistence.deployPostgres=true`) | `""`
`postgresql.postgresDatabase` | The PostgreSQL database (if `keycloak.persistence.deployPostgres=true`) | `keycloak`
`test.enabled` | If `true`, test pods get scheduled | `true`
`test.image.repository` | Test image repository | `unguiculus/docker-python3-phantomjs-selenium`
`test.image.tag` | Test image tag | `v1`
`test.image.pullPolicy` | Test image pull policy | `IfNotPresent`
@@ -1,3 +1,4 @@
{{- if .Values.test.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
@@ -53,3 +54,4 @@ data:
print('URLs match. Login successful.')
driver.quit()
{{- end }}
@@ -1,3 +1,4 @@
{{- if .Values.test.enabled }}
apiVersion: v1
kind: Pod
metadata:
@@ -34,3 +35,4 @@ spec:
configMap:
name: {{ template "keycloak.fullname" . }}-test
restartPolicy: Never
{{- end }}
+1
View File
@@ -240,6 +240,7 @@ postgresql:
enabled: false
test:
enabled: true
image:
repository: unguiculus/docker-python3-phantomjs-selenium
tag: v1