From 608b35eaef85ff80013acd3bb6d3ed4ee477fc4b Mon Sep 17 00:00:00 2001 From: rabi Date: Mon, 26 Jun 2017 10:23:31 +0530 Subject: [PATCH] Disable nova quota check in gate jobs Seems like Ice4aceac5dc44954db3661480b9365f54e47a4c9 broken the gate. We probably are better off disabling the quota check altogether. Change-Id: I55756ac80344fcf9ea78fdf3bd99467f169eb231 --- heat_integrationtests/pre_test_hook.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/heat_integrationtests/pre_test_hook.sh b/heat_integrationtests/pre_test_hook.sh index 05402c6d5f..27b1922b68 100755 --- a/heat_integrationtests/pre_test_hook.sh +++ b/heat_integrationtests/pre_test_hook.sh @@ -39,6 +39,10 @@ echo -e '[eventlet_opts]\nclient_socket_timeout=120\n' >> $localconf echo -e '[oslo_messaging_notifications]\ndriver=messagingv2\n' >> $localconf +# Disable nova quota check. +echo -e '[[post-config|$NOVA_CONF]]\n[DEFAULT]\n' >> $localconf +echo -e 'quota_driver=nova.quota.NoopQuotaDriver\n' >> $localconf + echo "[[local|localrc]]" >> $localconf echo "CEILOMETER_PIPELINE_INTERVAL=60" >> $localconf echo "HEAT_ENABLE_ADOPT_ABANDON=True" >> $localconf