From 77a5a9369cdf3eb843a7dc71ee1c4be7fbd97fbc Mon Sep 17 00:00:00 2001 From: Neill Cox Date: Fri, 3 Nov 2023 19:11:10 +1100 Subject: [PATCH] :construction: update open stack_command to accept a cloud parameter --- src/tripleo_aio_helpers/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tripleo_aio_helpers/utils.py b/src/tripleo_aio_helpers/utils.py index d37c5b2..eaa8f68 100644 --- a/src/tripleo_aio_helpers/utils.py +++ b/src/tripleo_aio_helpers/utils.py @@ -25,7 +25,7 @@ def openstack_cmd(cmd, args, as_json=False): """ cmd = cmd.replace("\n", " ") - cmd = "OS_CLOUD=standalone openstack " + cmd + cmd = f"OS_CLOUD={args.cloud} openstack " + cmd if args.ssh: cmd = f'ssh {args.ssh} "{cmd}"'