-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathawxsetup.txt
More file actions
51 lines (29 loc) · 936 Bytes
/
awxsetup.txt
File metadata and controls
51 lines (29 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
docker --version
docker compose version
kubectl version --client
minikube version
minikube start --driver=docker --memory=4g --cpus=2
kubectl get nodes
curl -s https://api.github.com/repos/ansible/awx-operator/releases | grep tag_name
git clone https://github.com/ansible/awx-operator.git
cd awx-operator
git checkout 2.19.1
kubectl apply -k config/default -n awx
kubectl get pods -n awx
sudo nano awx-deploy.yaml
apiVersion: awx.ansible.com/v1beta1
kind: AWX
metadata:
name: awx
namespace: awx
spec:
service_type: nodeport
projects_persistence: false
postgres_storage_class: standard
kubectl apply -f awx-deploy.yaml -n awx
kubectl get pods -n awx -- postgres to fully come up
kubectl get pods -n awx -w -- awx pods getting created
kubectl get pvc -n awx
kubectl get svc -n awx
minikube ip
kubectl get secret awx-admin-password -n awx -o jsonpath="{.data.password}" | base64 --decode