Make AWX compatible with Helm 3.x

In issue #5371, AWX has issues with using Helm 3.x.
This commit removes the usage tiller.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
This commit is contained in:
Bryan Hundven 2020-01-27 10:18:44 -08:00 committed by Bryan Hundven
parent e59f3982ae
commit d182c96c2e

View File

@ -86,11 +86,11 @@
- name: Deploy and Activate Postgres (Kubernetes)
shell: |
helm repo update --tiller-namespace={{ tiller_namespace | default('kube-system') }}
echo {{ pg_values | quote }} | helm upgrade {{ postgresql_service_name }} --install \
helm repo update
echo {{ pg_values | quote }} | helm upgrade {{ postgresql_service_name }} \
--install \
--namespace {{ kubernetes_namespace }} \
--version="6.2.1" \
--tiller-namespace={{ tiller_namespace | default('kube-system') }} \
--values - \
stable/postgresql
register: kubernetes_pg_activate