Add README.md

This commit is contained in:
shulkv01 2025-08-08 21:12:33 +00:00
commit 69e54870bf
1 changed files with 21 additions and 0 deletions

21
README.md Normal file
View File

@ -0,0 +1,21 @@
### Add awx-operator
helm repo add awx-operator https://ansible-community.github.io/awx-operator-helm/
### Install awx-operator
helm install awx-operator awx-operator/awx-operator -n awx --create-namespace --version 1.3.0
```
---
apiVersion: awx.ansible.com/v1beta1
kind: AWX
metadata:
name: awx-demo
spec:
service_type: nodeport
```
### Show Services
kubectl get svc -l "app.kubernetes.io/managed-by=awx-operator"
### Get Secret
kubectl get secret awx-demo-admin-password -o jsonpath="{.data.password}" | base64 --decode