curl -fsSL https://mirrors.cloud.tencent.com/kubernetes_new/core:/stable:/v1.33/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg
deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://mirrors.tencent.com/kubernetes_new/core:/stable:/v1.33/deb/ / # deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://mirrors.tencent.com/kubernetes_new/addons:/cri-o:/stable:/v1.33/deb/ /
git clone git@github.com:ansible/awx-operator.git
cd awx-operator git tag git checkout tags/<tag>
git checkout tags/2.19.1
export VERSION=<tag>
export VERSION=2.19.1
kubectl kustomize . > awx-operator.yaml
kubectl apply -k awx-operator
kubectl create namespace awx kubectl apply -k awx-operator kubectl get pods -n awx --watch
kubectl get pods -l "app.kubernetes.io/managed-by=awx-operator" -n awx
NAME READY STATUS RESTARTS AGE awx-demo-postgres-13-0 1/1 Running 0 47h awx-demo-task-68d5bb94fc-46872 4/4 Running 0 47h awx-demo-web-594cc6c687-bpfqb 3/3 Running 0 47h
Username: admin
The default password is found by running this command and copying the echo statement.
kubectl get secret awx-demo-admin-password -n awx -o jsonpath="{.data.password}" | base64 --decode ; echo