diff --git a/docs/user-guide/advanced-configuration/deploying-a-specific-version-of-awx.md b/docs/user-guide/advanced-configuration/deploying-a-specific-version-of-awx.md index 4f81b5c4d..91e60d69f 100644 --- a/docs/user-guide/advanced-configuration/deploying-a-specific-version-of-awx.md +++ b/docs/user-guide/advanced-configuration/deploying-a-specific-version-of-awx.md @@ -2,15 +2,19 @@ There are a few variables that are customizable for awx the image management. -| Name | Description | Default | -| ------------------- | ------------------------- | ----------------------------------------- | -| image | Path of the image to pull | quay.io/ansible/awx | -| image_version | Image version to pull | value of DEFAULT_AWX_VERSION or latest | -| image_pull_policy | The pull policy to adopt | IfNotPresent | -| image_pull_secrets | The pull secrets to use | None | -| ee_images | A list of EEs to register | quay.io/ansible/awx-ee:DEFAULT_AWX_VERSION | -| redis_image | Path of the image to pull | docker.io/redis | -| redis_image_version | Image version to pull | latest | +| Name | Description | Default | +| ----------------------------- | ------------------------- | ------------------------------------------ | +| image | Path of the image to pull | quay.io/ansible/awx | +| image_version | Image version to pull | value of DEFAULT_AWX_VERSION or latest | +| image_pull_policy | The pull policy to adopt | IfNotPresent | +| image_pull_secrets | The pull secrets to use | None | +| ee_images | A list of EEs to register | quay.io/ansible/awx-ee:DEFAULT_AWX_VERSION | +| redis_image | Path of the image to pull | docker.io/redis | +| redis_image_version | Image version to pull | latest | +| control_plane_ee_image | Image version to pull | quay.io/ansible/awx-ee:DEFAULT_AWX_VERSION | +| init_container_image | Path of the image to pull | quay.io/ansible/awx-ee | +| init_container_image_version | Image version to pull | value of DEFAULT_AWX_VERSION or latest | +| init_projects_container_image | Image version to pull | quay.io/centos/centos:stream9 | Example of customization could be: @@ -26,6 +30,10 @@ spec: ee_images: - name: my-custom-awx-ee image: myorg/my-custom-awx-ee + control_plane_ee_image: myorg/my-custom-awx-ee:latest + init_container_image: myorg/my-custom-awx-ee + init_container_image_version: latest + init_projects_container_image: myorg/my-mirrored-centos:stream9 ``` **Note**: The `image` and `image_version` are intended for local mirroring scenarios. Please note that using a version of AWX other than the one bundled with the `awx-operator` is **not** supported. For the default values, check the [main.yml](https://github.com/ansible/awx-operator/blob/devel/roles/installer/defaults/main.yml) file.