From fab0ff8bafb3394751cdb57ce23b9e3ca136659f Mon Sep 17 00:00:00 2001 From: James Slagle Date: Thu, 26 May 2022 16:23:07 -0400 Subject: [PATCH] Add GlobalConfig to saved stack outputs The GlobalConfig stack output needs to be saved as it's needed by stack export for multi-stack. Change-Id: I56464eefd3d1a638204403320523fab4a35adc2d Signed-off-by: James Slagle (cherry picked from commit 56003d306b4408a754d1ec0beff65bc05dd30109) --- tripleoclient/constants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tripleoclient/constants.py b/tripleoclient/constants.py index f259a08d3..f2b89d56e 100644 --- a/tripleoclient/constants.py +++ b/tripleoclient/constants.py @@ -95,7 +95,8 @@ STACK_OUTPUTS = ['BlacklistedHostnames', 'VipMap', 'EnabledServices', 'HostsEntry', - 'AdminPassword'] + 'AdminPassword', + 'GlobalConfig'] IRONIC_HTTP_BOOT_BIND_MOUNT = '/var/lib/ironic/httpboot' IRONIC_LOCAL_IMAGE_PATH = '/var/lib/ironic/images'