Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ spec:
init_projects_container_image: myorg/my-mirrored-centos:stream9
```

**Note**: The `image` and `image_version` are intended for local mirroring scenarios. `DEFAULT_AWX_VERSION` controls the main Ascender image tag, but the bundled execution environment defaults remain pinned to `ghcr.io/ctrliq/ascender-ee:latest` unless you override them explicitly. For the current defaults, check [roles/installer/defaults/main.yml](/home/weyerkaa/ascender-operator/roles/installer/defaults/main.yml).
**Note**: The `image` and `image_version` are intended for local mirroring scenarios. `DEFAULT_AWX_VERSION` controls the main Ascender image tag and we are now changing the execution environment default to the same pinned release for `ghcr.io/ctrliq/ascender-ee` unless you override them explicitly. For the current defaults, check [roles/installer/defaults/main.yml](/home/weyerkaa/ascender-operator/roles/installer/defaults/main.yml).
Comment thread
cigamit marked this conversation as resolved.
6 changes: 3 additions & 3 deletions roles/installer/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,10 @@ init_container_extra_commands: ''
init_container_extra_volume_mounts: ''

ee_images:
- name: "Ascender EE (latest)"
image: "ghcr.io/ctrliq/ascender-ee:latest"
- name: "Ascender EE ({{ _image_version }})"
image: "ghcr.io/ctrliq/ascender-ee:{{ _image_version }}"

_control_plane_ee_image: "ghcr.io/ctrliq/ascender-ee:latest"
_control_plane_ee_image: "ghcr.io/ctrliq/ascender-ee:{{ _image_version }}"

_init_container_image: "{{ _control_plane_ee_image.split(':')[0] }}"
_init_container_image_version: "{{ _control_plane_ee_image.split(':')[1] }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/mesh_ingress/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ingress_controller: ''

set_self_owneref: true

_control_plane_ee_image: "ghcr.io/ctrliq/ascender-ee:latest"
_control_plane_ee_image: "ghcr.io/ctrliq/ascender-ee:{{ lookup('env', 'DEFAULT_AWX_VERSION') or 'latest' }}"
_image_pull_policy: Always
image_pull_secrets: []

Expand Down