Using new Helm parameters for PostgreSQL access.

This commit is contained in:
westfood
2018-10-28 11:55:36 +01:00
parent ddda6b3d21
commit 694e494484

View File

@@ -81,9 +81,9 @@
- name: Deploy and Activate Postgres (Kubernetes) - name: Deploy and Activate Postgres (Kubernetes)
shell: | shell: |
helm install --name {{ kubernetes_deployment_name }} --namespace {{ kubernetes_namespace }} \ helm install --name {{ kubernetes_deployment_name }} --namespace {{ kubernetes_namespace }} \
--set postgresUser={{ pg_username }} \ --set postgresqlUsername={{ pg_username }} \
--set postgresPassword={{ pg_password }} \ --set postgresqlPassword={{ pg_password }} \
--set postgresDatabase={{ pg_database }} \ --set postgresqlDatabase={{ pg_database }} \
--set persistence.size={{ pg_volume_capacity|default('5')}}Gi \ --set persistence.size={{ pg_volume_capacity|default('5')}}Gi \
--tiller-namespace={{ tiller_namespace | default('kube-system') }} \ --tiller-namespace={{ tiller_namespace | default('kube-system') }} \
stable/postgresql stable/postgresql