From 69313e0c6ec61f21e8a9ce05098ce45fcdd37a71 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Fri, 18 Oct 2024 16:14:40 -0600 Subject: [PATCH] refactor: Use vars/RedHat_N.yml symlink for CentOS, Rocky, Alma wherever possible We have a lot of requests to support Rocky and Alma in various system roles. The first part of adding support is adding `vars/` files for these platforms. In almost every case, for a given major version N, the vars file RedHat_N.yml can be used for CentOS, Rocky, and Alma. Rather than making a copy of the RedHat_N.yml file, just use a symlink to reduce size and maintenance burden, and standardize this across all system roles for consistency. NOTE: OracleLinux is not a strict clone, so we are not going to do this for OracleLinux at this time. Support for OracleLinux will need to be done in separate PRs. For more information, see https://github.com/linux-system-roles/cockpit/issues/130 Note that there may be more work to be done to the role to fully support Rocky and Alma. Many roles have conditionals like this: ```yaml some_var: "{{ 'some value' if ansible_distribution in ['CentOS', 'RedHat'] else 'other value' }}" another_var: "{{ 'some value' if ansible_distribution in ['CentOS', 'Fedora', 'RedHat'] else 'other value' }}" ... - name: Do something when: ansible_distribution in ['CentOS', 'RedHat'] ... - name: Do something else when: ansible_distribution in ['CentOS', 'Fedora', 'RedHat'] ... ``` Adding Rocky and AlmaLinux to these conditionals will have to be done separately. In order to simplify the task, some new variables are being introduced: ```yaml __$rolename_rh_distros: - AlmaLinux - CentOS - RedHat - Rocky __$rolename_rh_distros_fedora: "{{ __$rolename_rh_distros + ['Fedora'] }}" __$rolename_is_rh_distro: "{{ ansible_distribution in __$rolename_rh_distros }}" __$rolename_is_rh_distro_fedora: "{{ ansible_distribution in __$rolename_rh_distros_fedora }}" ``` Then the conditionals can be rewritten as: ```yaml some_var: "{{ 'some value' if __$rolename_is_rh_distro else 'other value' }}" another_var: "{{ 'some value' if __$rolename_is_rh_distro_fedora else 'other value' }}" ... - name: Do something when: __$rolename_is_rh_distro | bool ... - name: Do something else when: __$rolename_is_rh_distro_fedora | bool ... ``` For tests - tests that use such conditionals will need to use `vars_files` or `include_vars` to load the variables that are defined in `tests/vars/rh_distros_vars.yml`: ```yaml vars_files: - vars/rh_distros_vars.yml ``` We don't currently have CI testing for Rocky or Alma, so someone wanting to run tests on those platforms would need to change the test code to use these. --- tests/vars/rh_distros_vars.yml | 18 ++++++++++++++++++ vars/main.yml | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/vars/rh_distros_vars.yml diff --git a/tests/vars/rh_distros_vars.yml b/tests/vars/rh_distros_vars.yml new file mode 100644 index 0000000..d54a155 --- /dev/null +++ b/tests/vars/rh_distros_vars.yml @@ -0,0 +1,18 @@ +# vars for handling conditionals for RedHat and clones +# DO NOT EDIT - file is auto-generated +--- +# Ansible distribution identifiers that the role treats like RHEL +__rhc_rh_distros: + - AlmaLinux + - CentOS + - RedHat + - Rocky + +# Same as above but includes Fedora +__rhc_rh_distros_fedora: "{{ __rhc_rh_distros + ['Fedora'] }}" + +# Use this in conditionals to check if distro is Red Hat or clone +__rhc_is_rh_distro: "{{ ansible_distribution in __rhc_rh_distros }}" + +# Use this in conditionals to check if distro is Red Hat or clone, or Fedora +__rhc_is_rh_distro_fedora: "{{ ansible_distribution in __rhc_rh_distros_fedora }}" diff --git a/vars/main.yml b/vars/main.yml index 8c08ff0..41700e8 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -24,3 +24,21 @@ __rhc_empty_string: "" __rhc_insights_conf: "/etc/insights-client/insights-client.conf" __rhc_insights_tags: "/etc/insights-client/tags.yaml" + +# BEGIN - DO NOT EDIT THIS BLOCK - rh distros variables +# Ansible distribution identifiers that the role treats like RHEL +__rhc_rh_distros: + - AlmaLinux + - CentOS + - RedHat + - Rocky + +# Same as above but includes Fedora +__rhc_rh_distros_fedora: "{{ __rhc_rh_distros + ['Fedora'] }}" + +# Use this in conditionals to check if distro is Red Hat or clone +__rhc_is_rh_distro: "{{ ansible_distribution in __rhc_rh_distros }}" + +# Use this in conditionals to check if distro is Red Hat or clone, or Fedora +__rhc_is_rh_distro_fedora: "{{ ansible_distribution in __rhc_rh_distros_fedora }}" +# END - DO NOT EDIT THIS BLOCK - rh distros variables