Lab 2 - AWX,AWX Operator Configurations & Deployments
Lab Objective
Deployment Steps
Step 1: Prepare YML files for configurations.

Step 2: Deploy the AWX Operator controller manager.







Step 3: Deploy the AWX.









Last updated
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
# Find the latest tag here: https://github.com/ansible/awx-operator/releases
- github.com/ansible/awx-operator/config/default?ref=1.1.1 #change to any preference version
# Set the image tags to match the git version from above
images:
- name: quay.io/ansible/awx-operator
newTag: 1.1.1 #change to any preference version
# Specify a custom namespace in which to install AWX
namespace: awxapiVersion: awx.ansible.com/v1beta1
kind: AWX
namespace: awx
metadata:
name: awx-demo
spec:
service_type: nodeport
# default nodeport_port is 30080
nodeport_port: 30000 #you may change this node port between 30000-32768$ kubectl apply -k .