From dd6cf19c3909a9c81168128b389492f5228202a3 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 14 Feb 2022 11:01:30 -0500 Subject: [PATCH] update steps for using custom operator Updating this to use the new make commands in the operator repo --- docs/development/minikube.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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