diff options
author | Surav Shrestha <suravshresth@gmail.com> | 2023-10-25 06:28:44 +0200 |
---|---|---|
committer | Seth Foster <fosterseth@users.noreply.github.com> | 2023-10-25 21:23:23 +0200 |
commit | 21fb395912d72a71c55c75dfb8d6c4045c077d3b (patch) | |
tree | 8bc286cdba7068ecb3cf67a47c4800359d87e534 /docs | |
parent | Fix extra_vars bug in ansible.controller.ad_hoc_command (#14585) (diff) | |
download | awx-21fb395912d72a71c55c75dfb8d6c4045c077d3b.tar.xz awx-21fb395912d72a71c55c75dfb8d6c4045c077d3b.zip |
fix typos in docs/development/minikube.md
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/minikube.md | 4 |
1 files 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/<username>/awx-operator -$ export VERSION=<cusom-tag> +$ export VERSION=<custom-tag> $ 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 ``` |