From cfd1822e9587d6d3d37dd920275e966b3bfd166b Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Wed, 6 Apr 2022 11:01:17 +0200 Subject: [PATCH] Disabling atop installation by default The atop package is meant to be installed during the undercloud setup for diagnostic purposes. Unfortunately it is not available in Centos8 Stream or Centos 9[0] which are used as OS by many of our CI jobs. The package is also not present in package manifests for RHEL 8[1] and RHEL7[2]. Taken together, this makes the task installing the package consistently fail. While the failure is ignored, the task does query the package manager and the output pollutes the logs. Setting the the atop installation to not be run by default is the first step to remedy the situation. Closes-Bug: #1968014 [0] https://pkgs.org/search/?q=atop [1] https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/package_manifest/index [2] https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/package_manifest/index Signed-off-by: Jiri Podivin Change-Id: I9688c5cc0e3db468a658ee903bb581c3c5d6640f --- roles/undercloud-setup/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/undercloud-setup/defaults/main.yml b/roles/undercloud-setup/defaults/main.yml index 48b5388fc..7af4cc0f3 100644 --- a/roles/undercloud-setup/defaults/main.yml +++ b/roles/undercloud-setup/defaults/main.yml @@ -39,7 +39,7 @@ undercloud_ara_version: 0.15.0 # NOTE(rfolco): do not configure ara on undercloud until we pin ara deps to # each branch - https://bugs.launchpad.net/tripleo/+bug/1792622 undercloud_ara: false -install_atop: true +install_atop: false atop_command: atop -R -w /var/log/atop.bin tripleo_set_unique_hostname: false