From 8ff88f4dc1896956877c9a3c86689cebf9c374b2 Mon Sep 17 00:00:00 2001 From: James Slagle Date: Tue, 12 Oct 2021 13:48:20 -0400 Subject: [PATCH] Add additional saved stack outputs Save more stack outputs in the working directory. Change-Id: I30903cfea1ee595c84ef021f5c3be7716c0726d9 Signed-off-by: James Slagle --- tripleoclient/constants.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tripleoclient/constants.py b/tripleoclient/constants.py index d283a58fb..6a7784b4e 100644 --- a/tripleoclient/constants.py +++ b/tripleoclient/constants.py @@ -87,7 +87,12 @@ PUPPET_BASE = "/etc/puppet/" STACK_TIMEOUT = 240 STACK_OUTPUTS = ['BlacklistedHostnames', 'RoleNetIpMap', - 'BlacklistedIpAddresses'] + 'BlacklistedIpAddresses', + 'RoleNetHostnameMap', + 'KeystoneURL', + 'EndpointMap', + 'VipMap', + 'EnabledServices'] IRONIC_HTTP_BOOT_BIND_MOUNT = '/var/lib/ironic/httpboot' IRONIC_LOCAL_IMAGE_PATH = '/var/lib/ironic/images'