From ca8e738e3e13508d9b2bf11058cc01814620a40b Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 6 Sep 2018 14:37:01 -0700 Subject: [PATCH] Don't set security groups in openstackci-packethost This account is an admin account and sees every project's default security group. This leads to: FAILED! => {"changed": false, "msg": "Multiple matches found for default"} When attempting to set the properties of the default security group for this account. There doesn't appear to be a good way to filter the other default security groups out currently so avoid setting them for now. Change-Id: I9a8cc7d59c0295caa71bf107b9b78745a4617981 --- playbooks/clouds_layouts.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/playbooks/clouds_layouts.yml b/playbooks/clouds_layouts.yml index be416c0d80..8ed29b1d6b 100644 --- a/playbooks/clouds_layouts.yml +++ b/playbooks/clouds_layouts.yml @@ -377,7 +377,13 @@ clouds: region_name: us-west-1 profiles: - openstackci-keypairs - - openstackci-security + # Disabled because this account is an admin account and sees + # the default security group for every project in the cloud. + # Results in: + # FAILED! => {"changed": false, "msg": "Multiple matches found for default"} + # Reenable if os_security_group grows a project filter or some other + # method of deduplication. + #- openstackci-security - name: openstackzuul-packethost oscc_cloud: openstackzuul-packethost region_name: us-west-1