diff --git a/docs/development/minikube.md b/docs/development/minikube.md index eef4e31c93..f18b72109d 100644 --- a/docs/development/minikube.md +++ b/docs/development/minikube.md @@ -52,12 +52,12 @@ of the awx-operator repo. If not, continue to the next section. ### Building and Deploying a Custom AWX Operator Image ``` -$ operator-sdk build quay.io//awx-operator -$ docker push quay.io//awx-operator -$ ansible-playbook ansible/deploy-operator.yml \ - -e pull_policy=Always \ - -e operator_image=quay.io//awx-operator \ - -e operator_version=latest +# in awx-operator repo on the branch you want to use +$ export IMAGE_TAG_BASE=quay.io//awx-operator +$ export VERSION= +$ make docker-build +$ docker push ${IMAGE_TAG_BASE}:${VERSION} +$ make deploy ``` ## Deploy AWX into Minikube using the AWX Operator