From bf4f73330812d167336b3088df2b2baeb726094b Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Fri, 18 Oct 2024 16:14:27 -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: There is no Alma or Rocky version 7 or less. 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 **Question**: Why not just use `ansible_facts["os_family"] == "RedHat"`? **Answer**: This is what Ansible uses as the RedHat os_family: https://github.com/ansible/ansible/blob/1e6ffc1d02559a26def6c9c3b07baf27032865a2/lib/ansible/module_utils/facts/system/distribution.py#L511 There are a lot of distributions in there. I know that Fedora is not a clone of RHEL, but it is very closely related. Most of the others are not clones, and it would generally not work to replace ansible_distribution in ['CentOS', 'Fedora', 'RedHat'] with ansible_facts['os_family'] == 'RedHat' (but it would probably work in specific cases with specific distributions). For example, OracleLinux is in there, and we know that doesn't generally work. The only ones we can be pretty sure about are `RedHat`, `CentOS`, `Fedora`, `AlmaLinux`, and `Rocky`. **Question**: Does my role really need this because it should already work on RHEL clones? **Answer**: Maybe not - but: * it doesn't hurt anything * it's there if we need it in the future * the role will be inconsistent with the other system roles if we don't have this **Question**: Why do I need the `tests/vars/rh_distros_vars.yml` file? Doesn't the test load the vars from the role? **Answer**: No, the test does not load the vars from the role until the role is included, and many tests use version and distribution before including the role. **Question**: Do we need to change the code now to use the new variables? **Answer**: No, not now, in subsequent PRs, hopefully by Alma and Rocky users. 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. Signed-off-by: Rich Megginson --- tests/vars/rh_distros_vars.yml | 20 +++++++++++++++++++ vars/AlmaLinux-10.yml | 1 + vars/AlmaLinux-8.yml | 1 + vars/AlmaLinux-9.yml | 1 + vars/CentOS-10.yml | 35 +--------------------------------- vars/CentOS-8.yml | 28 +-------------------------- vars/CentOS-9.yml | 1 + vars/Rocky-10.yml | 1 + vars/Rocky-8.yml | 1 + vars/Rocky-9.yml | 1 + vars/main.yml | 18 +++++++++++++++++ 11 files changed, 47 insertions(+), 61 deletions(-) create mode 100644 tests/vars/rh_distros_vars.yml create mode 120000 vars/AlmaLinux-10.yml create mode 120000 vars/AlmaLinux-8.yml create mode 120000 vars/AlmaLinux-9.yml mode change 100644 => 120000 vars/CentOS-10.yml mode change 100644 => 120000 vars/CentOS-8.yml create mode 120000 vars/CentOS-9.yml create mode 120000 vars/Rocky-10.yml create mode 120000 vars/Rocky-8.yml create mode 120000 vars/Rocky-9.yml diff --git a/tests/vars/rh_distros_vars.yml b/tests/vars/rh_distros_vars.yml new file mode 100644 index 0000000..c87e463 --- /dev/null +++ b/tests/vars/rh_distros_vars.yml @@ -0,0 +1,20 @@ +# vars for handling conditionals for RedHat and clones +# DO NOT EDIT - file is auto-generated +# repo is https://github.com/linux-system-roles/.github +# file is playbooks/templates/tests/vars/rh_distros_vars.yml +--- +# Ansible distribution identifiers that the role treats like RHEL +__cockpit_rh_distros: + - AlmaLinux + - CentOS + - RedHat + - Rocky + +# Same as above but includes Fedora +__cockpit_rh_distros_fedora: "{{ __cockpit_rh_distros + ['Fedora'] }}" + +# Use this in conditionals to check if distro is Red Hat or clone +__cockpit_is_rh_distro: "{{ ansible_distribution in __cockpit_rh_distros }}" + +# Use this in conditionals to check if distro is Red Hat or clone, or Fedora +__cockpit_is_rh_distro_fedora: "{{ ansible_distribution in __cockpit_rh_distros_fedora }}" diff --git a/vars/AlmaLinux-10.yml b/vars/AlmaLinux-10.yml new file mode 120000 index 0000000..c04282e --- /dev/null +++ b/vars/AlmaLinux-10.yml @@ -0,0 +1 @@ +RedHat-10.yml \ No newline at end of file diff --git a/vars/AlmaLinux-8.yml b/vars/AlmaLinux-8.yml new file mode 120000 index 0000000..d49e1cd --- /dev/null +++ b/vars/AlmaLinux-8.yml @@ -0,0 +1 @@ +RedHat-8.yml \ No newline at end of file diff --git a/vars/AlmaLinux-9.yml b/vars/AlmaLinux-9.yml new file mode 120000 index 0000000..3e6a45c --- /dev/null +++ b/vars/AlmaLinux-9.yml @@ -0,0 +1 @@ +RedHat-9.yml \ No newline at end of file diff --git a/vars/CentOS-10.yml b/vars/CentOS-10.yml deleted file mode 100644 index 3cccb22..0000000 --- a/vars/CentOS-10.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -# RHEL Web Console (Cockpit) only:# -# to validate this list of packages for each Major.Minor release -# -# for MINOR in 0 1; do -# subscription-manager release --set="9.${MINOR}" -# yum clean all -# yum repoquery cockpit* --disablerepo=* \ -# --enablerepo=rhel-9-for-x86_64-appstream-rpms \ -# --enablerepo=rhel-9-for-x86_64-baseos-rpms \ -# --queryformat '%{name}.%{arch} : %{reponame}' ; -# done; -# -__cockpit_packages_minimal: - - cockpit-system - - cockpit-ws -__cockpit_packages_default: - - cockpit - - cockpit-networkmanager - - cockpit-packagekit - - cockpit-selinux - - cockpit-storaged -__cockpit_packages_full: - - cockpit-* -__cockpit_packages: - minimal: "{{ __cockpit_packages_minimal }}" - default: "{{ __cockpit_packages_minimal + __cockpit_packages_default }}" - full: "{{ __cockpit_packages_minimal + __cockpit_packages_default + - __cockpit_packages_full }}" -__cockpit_packages_exclude: - - cockpit-docker # omit in favor of podman - - cockpit-ostree # omit only needed for CoreOS - - cockpit-tests # omit only needed for testing -# -------------------------- diff --git a/vars/CentOS-10.yml b/vars/CentOS-10.yml new file mode 120000 index 0000000..c04282e --- /dev/null +++ b/vars/CentOS-10.yml @@ -0,0 +1 @@ +RedHat-10.yml \ No newline at end of file diff --git a/vars/CentOS-8.yml b/vars/CentOS-8.yml deleted file mode 100644 index b69cd5b..0000000 --- a/vars/CentOS-8.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -# -# to validate this list of packages -# yum clean all -# yum repoquery cockpit* --disablerepo=* --enablerepo=BaseOS \ -# --enablerepo=AppStream --queryformat '%{name}.%{arch} : %{reponame}' ; -# -__cockpit_packages_minimal: - - cockpit-system - - cockpit-ws -__cockpit_packages_default: - - cockpit - - cockpit-networkmanager - - cockpit-packagekit - - cockpit-selinux - - cockpit-storaged -__cockpit_packages_full: - - cockpit-* -__cockpit_packages: - minimal: "{{ __cockpit_packages_minimal }}" - default: "{{ __cockpit_packages_minimal + __cockpit_packages_default }}" - full: "{{ __cockpit_packages_minimal + __cockpit_packages_default + - __cockpit_packages_full }}" -__cockpit_packages_exclude: - - cockpit-docker # omit in favor of podman - - cockpit-ostree # omit only needed for CoreOS - - cockpit-tests # omit only needed for testing diff --git a/vars/CentOS-8.yml b/vars/CentOS-8.yml new file mode 120000 index 0000000..d49e1cd --- /dev/null +++ b/vars/CentOS-8.yml @@ -0,0 +1 @@ +RedHat-8.yml \ No newline at end of file diff --git a/vars/CentOS-9.yml b/vars/CentOS-9.yml new file mode 120000 index 0000000..3e6a45c --- /dev/null +++ b/vars/CentOS-9.yml @@ -0,0 +1 @@ +RedHat-9.yml \ No newline at end of file diff --git a/vars/Rocky-10.yml b/vars/Rocky-10.yml new file mode 120000 index 0000000..c04282e --- /dev/null +++ b/vars/Rocky-10.yml @@ -0,0 +1 @@ +RedHat-10.yml \ No newline at end of file diff --git a/vars/Rocky-8.yml b/vars/Rocky-8.yml new file mode 120000 index 0000000..d49e1cd --- /dev/null +++ b/vars/Rocky-8.yml @@ -0,0 +1 @@ +RedHat-8.yml \ No newline at end of file diff --git a/vars/Rocky-9.yml b/vars/Rocky-9.yml new file mode 120000 index 0000000..3e6a45c --- /dev/null +++ b/vars/Rocky-9.yml @@ -0,0 +1 @@ +RedHat-9.yml \ No newline at end of file diff --git a/vars/main.yml b/vars/main.yml index 7e78ded..91fa426 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -22,3 +22,21 @@ __cockpit_required_facts: # the 'gather_subset' parameter of the 'setup' module __cockpit_required_facts_subsets: "{{ ['!all', '!min'] + __cockpit_required_facts }}" + +# BEGIN - DO NOT EDIT THIS BLOCK - rh distros variables +# Ansible distribution identifiers that the role treats like RHEL +__cockpit_rh_distros: + - AlmaLinux + - CentOS + - RedHat + - Rocky + +# Same as above but includes Fedora +__cockpit_rh_distros_fedora: "{{ __cockpit_rh_distros + ['Fedora'] }}" + +# Use this in conditionals to check if distro is Red Hat or clone +__cockpit_is_rh_distro: "{{ ansible_distribution in __cockpit_rh_distros }}" + +# Use this in conditionals to check if distro is Red Hat or clone, or Fedora +__cockpit_is_rh_distro_fedora: "{{ ansible_distribution in __cockpit_rh_distros_fedora }}" +# END - DO NOT EDIT THIS BLOCK - rh distros variables