From f5480ed30f6ae176cc0ff08b985fed50872e622a Mon Sep 17 00:00:00 2001 From: Tobias Henkel Date: Mon, 12 Oct 2020 08:55:08 +0200 Subject: [PATCH] Blacklist ansible 2.9.14 This version breaks the k8s connection plugin [1]. [1] https://github.com/ansible/ansible/issues/72171 Change-Id: I76647df20e0b23dc3701cb45666774a7dfcfa4d0 --- zuul/lib/ansible-config.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/zuul/lib/ansible-config.conf b/zuul/lib/ansible-config.conf index ca58d09392..5ef801df11 100644 --- a/zuul/lib/ansible-config.conf +++ b/zuul/lib/ansible-config.conf @@ -4,7 +4,10 @@ default_version = 2.9 requirements = ara>=0.16.5,<1.0.0 openstacksdk openshift jmespath google-cloud-storage [2.8] -requirements = ansible>=2.8,<2.9 +# Ansible 2.8.16 breaks the k8s connection plugin +requirements = ansible>=2.8,<2.9,!=2.8.16 [2.9] -requirements = ansible>=2.9,<2.10 +# Ansible 2.9.14 breaks the k8s connection plugin +# https://github.com/ansible/ansible/issues/72171 +requirements = ansible>=2.9,<2.10,!=2.9.14