AWX/Helm Chart: Difference between revisions
< AWX
(Created page with " awx-operator 2.19.1 · christianhuth/awx-operator https://artifacthub.io/packages/helm/awx-operator/awx-operator/ chart version 2.19.1 as of July 2, 2024 Helm parameters: The install argument must be a chart reference, a path to a packaged chart, a path to an unpacked chart directory or a URL. Installation example: helm install MYNAME CHART-REPO/CHART-NAME -n NAMESPACE --create-namespace -f MYVALUES.yaml helm install my-awx-operator awx-operator/awx-operator -n a...") |
(No difference)
|
Latest revision as of 19:09, 15 August 2024
awx-operator 2.19.1 · christianhuth/awx-operator https://artifacthub.io/packages/helm/awx-operator/awx-operator/
chart version 2.19.1 as of July 2, 2024
Helm parameters: The install argument must be a chart reference, a path to a packaged chart, a path to an unpacked chart directory or a URL.
Installation example:
helm install MYNAME CHART-REPO/CHART-NAME -n NAMESPACE --create-namespace -f MYVALUES.yaml helm install my-awx-operator awx-operator/awx-operator -n awx --create-namespace -f myvalues.yaml
-f passes in the file with your custom values -n sets the namespace to be installed in This value is accessed by Template:$.Release.Namespace in the templates Acts as the default namespace for all unspecified resources --create-namespace specifies that helm should create the namespace before installing
To update an existing installation, use helm upgrade instead of install. The rest of the syntax remains the same.