diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-04-09 15:50:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 15:50:09 +0200 |
commit | 86204cf23bd5645cece25f0cf3791f3c0367e52f (patch) | |
tree | 1427abd61e8ede887f7bc3bd81ff7ddc3b6d91d3 /docs | |
parent | Remove uneeded drf_reverse overwrite (diff) | |
download | awx-86204cf23bd5645cece25f0cf3791f3c0367e52f.tar.xz awx-86204cf23bd5645cece25f0cf3791f3c0367e52f.zip |
Publish amd64 and arm64 awx image on release (#15053)24.2.0
* Stage multi-arch awx image
- change CI to use `make awx-kube-build` instead of build playbook
- update staging CI to build and push multiarch awx image
- update doc to use `make awx-kube-build` to build awx image
- remove build playbook (no longer used)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/build_awx_image.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/build_awx_image.md b/docs/build_awx_image.md index c359f7e31e..f2a0b6c35e 100644 --- a/docs/build_awx_image.md +++ b/docs/build_awx_image.md @@ -2,12 +2,10 @@ ## Build & Push Image -To build a custom awx image to use with the awx-operator, use the `build_image` role: +To build a custom awx image to use with the awx-operator: ``` -$ ansible-playbook tools/ansible/build.yml \ - -e awx_image=registry.example.com/ansible/awx \ - -e awx_image_tag=test -v +make awx-kube-build ``` > 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). |