From 21fb395912d72a71c55c75dfb8d6c4045c077d3b Mon Sep 17 00:00:00 2001 From: Surav Shrestha Date: Wed, 25 Oct 2023 10:13:44 +0545 Subject: [PATCH] fix typos in docs/development/minikube.md --- docs/development/minikube.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/minikube.md b/docs/development/minikube.md index 876b63a2ba..3bb9373d23 100644 --- a/docs/development/minikube.md +++ b/docs/development/minikube.md @@ -45,7 +45,7 @@ of the awx-operator repo. If not, continue to the next section. ``` # in awx-operator repo on the branch you want to use $ export IMAGE_TAG_BASE=quay.io//awx-operator -$ export VERSION= +$ export VERSION= $ make docker-build $ docker push ${IMAGE_TAG_BASE}:${VERSION} ``` @@ -118,7 +118,7 @@ To access via the web browser, run the following command: $ minikube service awx-service --url ``` -To retreive your admin password +To retrieve your admin password ``` $ kubectl get secrets awx-admin-password -o json | jq '.data.password' | xargs | base64 -d ```