airshipctl/tools/gate
Alexey Odinokov 1505353333 Switching local gating scripts to Python3 to comply with Zuul
The initial version of gating playbook contained ability
to run them either on Python2 or Python3 ansible.
But it causes a lot of issues e.g. a need to install[1] both
versions of libs to support both possible ways to run,
discrepancy between local and Zuul run[2]
Zuul testing is done with ansible running on Python3 [3].
Meanwhile ppa repo for ansible contains ansible pachage
that depends only from python2. There is no package for
Python3 and we used only Python2-ansyble.
The fact that Zuul runs it with different configuration
means that we'll keep facing the issues with dependencies
in future, since Gating doesn't test it.
This patch changes makes local scripts run as Zuul.

PS
The script partially takes care of reverting intallation
from its previous runs. To cleanup completely it's possible
to run [4] in case these pacakges are not used by anyone else

[1]
https://opendev.org/airship/airshipctl/src/branch/master/roles/libvirt-install/tasks/main.yaml#L38
[2]
https://review.opendev.org/#/c/717841/
https://review.opendev.org/#/c/718590/
[3]
https://zuul.opendev.org/t/openstack/build/4096513604a84cd2b2f2578fc3f98660/log/zuul-info/host-info.primary.yaml#498
[4]
if dpkg -l | grep "ansible.*ppa~bionic"; then
      sudo apt -y remove ansible
      sudo apt -y autoremove
      sudo add-apt-repository -r -y ppa:ansible/ansible
      sudo apt-get -y update
fi
+ possibly
sudo apt remove virtinst python-libvirt python-docker python-requests python-lxml python-libvirt

Change-Id: Ia1ac3aa4128f6c4797dea1709ccb8516ae342a66
2020-04-11 06:53:40 +00:00
..
00_setup.sh Switching local gating scripts to Python3 to comply with Zuul 2020-04-11 06:53:40 +00:00
10_build_gate.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
20_run_test_runner.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
21_systemwide_executable.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
22_test_configs.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
23_build_ephemeral_iso.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
25_deploy_ephemeral_node.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
99_collect_logs.sh [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00
config_build_ephemeral_iso.yaml Add copyright for missing files 2020-04-09 08:35:59 -05:00
config_deploy_ephemeral_node.yaml Add copyright for missing files 2020-04-09 08:35:59 -05:00
config_systemwide_executable.yaml Add copyright for missing files 2020-04-09 08:35:59 -05:00
config_template.yaml Add copyright for missing files 2020-04-09 08:35:59 -05:00
config_test_configs.yaml Add copyright for missing files 2020-04-09 08:35:59 -05:00