mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/keycloak] Add option to disable test pod (#12214)
Signed-off-by: Matteo Gazzetta <matteo_gazzetta@hotmail.it>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
7b2f828c02
commit
2376af9f38
@@ -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:
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -240,6 +240,7 @@ postgresql:
|
||||
enabled: false
|
||||
|
||||
test:
|
||||
enabled: true
|
||||
image:
|
||||
repository: unguiculus/docker-python3-phantomjs-selenium
|
||||
tag: v1
|
||||
|
||||
Reference in New Issue
Block a user