From 0a2a492d0db2a8f0f031b09d59bca9829295af2e Mon Sep 17 00:00:00 2001 From: Pierre Prinetti Date: Thu, 23 Apr 2020 09:48:41 +0200 Subject: [PATCH] openstack UPI: Server group name to match IPI The installer creates a server group as a side effect of the manifest generation. Prior to this patch, the UPI playbooks created yet another server group and left the installer-created one unused. With this patch, the UPI playbooks reuse the server group created by the installer, rather than creating an additional one. --- upi/openstack/common.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upi/openstack/common.yaml b/upi/openstack/common.yaml index 4c5d137cb9c..720347c7b47 100644 --- a/upi/openstack/common.yaml +++ b/upi/openstack/common.yaml @@ -23,7 +23,7 @@ # Server names os_bootstrap_server_name: "{{ infraID }}-bootstrap" os_cp_server_name: "{{ infraID }}-master" - os_cp_server_group_name: "{{ infraID }}-master-group" + os_cp_server_group_name: "{{ infraID }}-master" os_compute_server_name: "{{ infraID }}-worker" # Trunk names os_cp_trunk_name: "{{ infraID }}-master-trunk"