-
Task
-
Resolution: Done
-
Normal
-
None
-
ACM 2.14.0
-
1
-
False
-
-
False
-
-
-
Installer Sprint 2025-56
-
Moderate
-
None
Currently, CAPI, CAPA, and Edge Manager are in Tech Preview status which means their MCH/MCE component names have "-preview" appended to them. Once they go out of Tech Preview, that string is removed.
In order for our automation to be able to run on multiple releases, we need something similar to the below in tasks/post_install_tasks.yml for these components.
- set_fact:
ibio_toggle_name: "{{ 'image-based-install-operator' if ( acm_release_version.split('.') | last | int >= 12) else 'image-based-install-operator-preview' }}"
- name: Enable image-based-install-operator
vars:
component: '{{ ibio_toggle_name }}'
enable: true
include_tasks: tasks/toggle_mce_component.yml
when: - enableIbio | bool