Skip to main content

AWX operator


설치

helm repo add awx-operator https://ansible.github.io/awx-operator/
helm repo update awx-operator \
&& helm search repo awx-operator -l | head -n 10
helm pull awx-operator/awx-operator --version 2.13.1
helm show values awx-operator-2.13.1.tgz > awx-operator-2.13.1.yaml
awx-operator-values.yaml
AWX:
enabled: false
helm template awx-operator awx-operator-2.13.1.tgz \
-n workflow \
-f awx-operator-values.yaml \
> awx-operator.yaml
helm upgrade awx-operator awx-operator-2.13.1.tgz \
--install \
--history-max 5 \
-n workflow \
-f awx-operator-values.yaml