mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
10 lines
347 B
Markdown
10 lines
347 B
Markdown
# AWX example
|
|
|
|
```sh
|
|
kubectl kustomize --enable-helm 'operator/' | kubectl apply -f -
|
|
kubectl apply -k 'instance/'
|
|
kubectl -n 'awx' get secret 'awx-admin-password' -o jsonpath="{.data.password}" | base64 --decode
|
|
kubectl get ingress -n 'awx' 'awx-ingress' -o jsonpath='{.status.loadBalancer.ingress[*].hostname}' \
|
|
| xargs -I{} open http://{}
|
|
```
|