From be6f34c3388365f93c84671f07af7a1cffb6efd8 Mon Sep 17 00:00:00 2001 From: Vasyl Saienko Date: Wed, 28 Dec 2016 10:39:44 +0200 Subject: [PATCH] Disable placement-api by default With placement-api enablement Ironic jobs got into regression due to [0]. The fix in Nova stuck at the decision phase [1]. Until Nova fix issue permanently disable it in ironic to unblock CI. [0] https://bugs.launchpad.net/ironic/+bug/1651678 [1] https://review.openstack.org/#/c/414214/ Change-Id: I658ec963761dd4c5111a98e77298a8974553e857 Related-Bug: #1651678 --- devstack/settings | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/devstack/settings b/devstack/settings index 82d273e5e2..d4ecb73cc8 100644 --- a/devstack/settings +++ b/devstack/settings @@ -8,3 +8,8 @@ local_mtu=$(ip link show | sed -ne 's/.*mtu \([0-9]\+\).*/\1/p' | sort -n | head # 50 bytes is overhead for vxlan (which is greater than GRE # allowing us to use either overlay option with this MTU. PUBLIC_BRIDGE_MTU=$((local_mtu - 50)) + +# NOTE(vsaienko) disable placement-api as it breaks ironic CI and permanent fix +# in Nova stuck at the decision phase https://review.openstack.org/#/c/414214/ +# https://launchpad.net/bugs/1651678 +disable_service placement-api \ No newline at end of file