Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 873 Bytes

ReadMe.md

File metadata and controls

37 lines (26 loc) · 873 Bytes

Install MiniKube on Windows ( see: Get Started )

winget install minikube

Run minikube

Using admin command prompt

minikube start

deploy awx ( see: awx-operator )

minikube kubctl -- apply -k .

check status

minikube kubectl -- get pods -n awx
minikube kubectl -- get pods -n awx -l "app.kubernetes.io/managed-by=awx-operator"
minikube kubectl -- get svc -n awx -l "app.kubernetes.io/managed-by=awx-operator"

get default login credentials

The default login is admin and you can find the service url and password using the following commands:

minikube kubectl -- get secret -n awx awx-demo-admin-password -o jsonpath="{.data.password}" > data.b64
certutil -decode data.b64 pass.txt
minikube service -n awx awx-demo-service --url