From 3ae156a6deb383294765ef3407ae8d4a91188269 Mon Sep 17 00:00:00 2001 From: Ramana Raja Date: Tue, 22 Sep 2015 12:13:44 +0530 Subject: [PATCH] Manila: fix access rule type for gluster_native CI Disable Tempest configuration that creates "ip" access type rules for Manila CI using "glusterfs_native" driver. Change-Id: I14061af63c3fddec5ec727f24c3aebba76080e11 Closes-Bug: #1498313 --- manila/post_test_hook.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manila/post_test_hook.sh b/manila/post_test_hook.sh index ec31f6b..1c0eab4 100755 --- a/manila/post_test_hook.sh +++ b/manila/post_test_hook.sh @@ -27,6 +27,9 @@ if [[ "$JOB_NAME" =~ "glusterfs-native" ]]; then local BACKEND_NAME="GLUSTERNATIVE" iniset $BASE/new/tempest/etc/tempest.conf share enable_protocols glusterfs iniset $BASE/new/tempest/etc/tempest.conf share storage_protocol GLUSTERFS + # Disable tempest config option that enables creation of 'ip' type access + # rules by default during tempest test runs. + iniset $BASE/new/tempest/etc/tempest.conf share enable_ip_rules_for_protocols iniset $BASE/new/tempest/etc/tempest.conf share enable_cert_rules_for_protocols glusterfs else local BACKEND_NAME="GLUSTERFS"