Installing AWX
Before we discuss AWX, it is best if you have it installed on your machine so that you can follow the explanations and immediately start to use AWX.
The easiest way to install AWX Operator is using Kustomize.
We will need to create a file called kustomization.yaml
with the following content:
--- apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - github.com/ansible/awx-operator/config/default?ref=2.3.0 images: - name: quay.io/ansible/awx-operator newTag: 2.3.0 namespace: awx
Note that version 2.3.0 is the most current at the time of writing. To find out which is the latest available version, go to https://github.com/ansible/awx-operator/releases.
Now that we have the kustomization file ready, we can apply it with the following command:
kubectl apply -k .
Once the previous command has finished, we shall be able to see the AWX Operator controller manager pod running:
$ kubectl...