mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-07 22:02:53 +00:00
Move custom resource definitions into a CRDs folder (#994)
* Add missing quote for port parameter * Add step to move CRDs into the correct folder
This commit is contained in:
@@ -7,7 +7,7 @@ metadata:
|
|||||||
{{- with $.Values.AWX.postgres }}
|
{{- with $.Values.AWX.postgres }}
|
||||||
stringData:
|
stringData:
|
||||||
host: {{ .host }}
|
host: {{ .host }}
|
||||||
port: {{ .port }}
|
port: {{ .port | quote }}
|
||||||
database: {{ .dbName }}
|
database: {{ .dbName }}
|
||||||
username: {{ .username }}
|
username: {{ .username }}
|
||||||
password: {{ .password }}
|
password: {{ .password }}
|
||||||
|
|||||||
2
Makefile
2
Makefile
@@ -295,6 +295,8 @@ helm-chart-generate: kustomize helm kubectl-slice yq charts
|
|||||||
--output-dir=charts/$(CHART_NAME)/templates \
|
--output-dir=charts/$(CHART_NAME)/templates \
|
||||||
--sort-by-kind
|
--sort-by-kind
|
||||||
@echo "AWX Operator installed with Helm Chart version $(VERSION)" > charts/$(CHART_NAME)/templates/NOTES.txt
|
@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
|
.PHONY: helm-chart-edit
|
||||||
helm-chart-slice:
|
helm-chart-slice:
|
||||||
|
|||||||
Reference in New Issue
Block a user