From 82934a4499d6b2abfd53436046157d8b532c4922 Mon Sep 17 00:00:00 2001 From: shulkv01 Date: Fri, 8 Aug 2025 21:14:20 +0000 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66bde64..4be980a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,12 @@ ### 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 +``` ``` --- @@ -15,7 +19,10 @@ spec: ``` ### 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 - +```