[stable/keycloak] Documentation fixes (#6289)

* Fix a typo in the Google Cloud SQL Proxy example

* Fix dbVendor in Google Cloud SQL example

* [stable/keycloak] Fix theme example

`extraInitContainers` and friends need to be strings.

* Bump chart version
This commit is contained in:
Chia-liang Kao
2018-06-25 12:22:21 -07:00
committed by k8s-ci-robot
parent 63371a6d07
commit 6ad581b267
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: keycloak
version: 3.0.0
version: 3.0.1
appVersion: 4.0.0.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
+5 -5
View File
@@ -188,7 +188,7 @@ In combination with an `emptyDir` that is shared with the Keycloak container, co
```yaml
keycloak:
extraInitContainers:
extraInitContainers: |
- name: theme-provider
image: myuser/mytheme:1
imagePullPolicy: IfNotPresent
@@ -203,11 +203,11 @@ keycloak:
- name: theme
mountPath: /theme
extraVolumeMounts:
extraVolumeMounts: |
- name: theme
mountPath: /opt/jboss/keycloak/themes/mytheme
extraVolumes:
extraVolumes: |
- name: theme
emptyDir: {}
```
@@ -258,7 +258,7 @@ keycloak:
command:
- /cloud_sql_proxy
args:
- -instances={{ .Values.cloudsql.project }}:{{ .Values.cloudsql.region }}:{{ .Values.cloudsql.instance }}=tcp:5432=tcp:5432
- -instances={{ .Values.cloudsql.project }}:{{ .Values.cloudsql.region }}:{{ .Values.cloudsql.instance }}=tcp:5432
- -credential_file=/secrets/cloudsql/credentials.json
volumeMounts:
- name: cloudsql-creds
@@ -272,7 +272,7 @@ keycloak:
persistence:
deployPostgres: false
dbVendor: POSTGRES
dbVendor: postgres
dbName: postgres
dbHost: 127.0.0.1
dbPort: 5432