diff --git a/.helm/starter/templates/postgres-config.yaml b/.helm/starter/templates/postgres-config.yaml index d0f2aa40..4a1d9ecb 100644 --- a/.helm/starter/templates/postgres-config.yaml +++ b/.helm/starter/templates/postgres-config.yaml @@ -7,7 +7,7 @@ metadata: {{- with $.Values.AWX.postgres }} stringData: host: {{ .host }} - port: {{ .port }} + port: {{ .port | quote }} database: {{ .dbName }} username: {{ .username }} password: {{ .password }} diff --git a/Makefile b/Makefile index ceabc97a..1fd26a29 100644 --- a/Makefile +++ b/Makefile @@ -295,6 +295,8 @@ helm-chart-generate: kustomize helm kubectl-slice yq charts --output-dir=charts/$(CHART_NAME)/templates \ --sort-by-kind @echo "AWX Operator installed with Helm Chart version $(VERSION)" > charts/$(CHART_NAME)/templates/NOTES.txt + mkdir charts/$(CHART_NAME)/crds + mv charts/$(CHART_NAME)/templates/customresourcedefinition* charts/$(CHART_NAME)/crds .PHONY: helm-chart-edit helm-chart-slice: