Merge pull request #11737 from ansible/update-minikube-docs

update minkube docs with steps for using custom operator
This commit is contained in:
Shane McDonald
2022-03-01 07:49:21 -05:00
committed by GitHub

View File

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