Merge pull request #11035 from rooftopcellist/build_app_image_docs

Update image variable name for awx-operator app image docs
This commit is contained in:
Christian Adams 2021-09-08 09:32:14 -04:00 committed by GitHub
commit f8a08c8a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,8 @@ To build a custom awx image to use with the awx-operator, use the `build_image`
$ ansible-playbook tools/ansible/build.yml -v -e awx_image=registry.example.com/awx -e awx_version=test
```
> Note: The development image (`make docker-compose-build`) will not work with the awx-operator, the UI is not built in that image, among other things (see Dockerfile.j2 for more info).
This will build an AWX image and tag it. You can then push that image to your container registry:
@ -23,6 +25,6 @@ specify the new custom image.
```
spec:
tower_image: registry.example.com/awx
tower_image_version: test
image: registry.example.com/awx
image_version: test
```