From 99d4ac501d4af05f84496259919aacf48164b1f6 Mon Sep 17 00:00:00 2001 From: Sandeep Yadav Date: Sat, 11 Sep 2021 09:18:25 +0530 Subject: [PATCH] Update overcloud deploy help for default heat type In patch[1], we have changed the default heat type to be ephermal heat. We missed to change the help section. To avoid confusion to users, Updating with this patch. [1] https://review.opendev.org/c/openstack/python-tripleoclient/+/789930 Change-Id: Iae5ca17dbca64d5b0594138843c99d23797c331d --- tripleoclient/v1/overcloud_deploy.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tripleoclient/v1/overcloud_deploy.py b/tripleoclient/v1/overcloud_deploy.py index 98a846f2e..eb35322ce 100644 --- a/tripleoclient/v1/overcloud_deploy.py +++ b/tripleoclient/v1/overcloud_deploy.py @@ -963,9 +963,8 @@ class DeployOvercloud(command.Command): choices=['installed', 'pod', 'container', 'native'], help=_('The type of Heat process to use to execute ' 'the deployment.\n' - 'installed (Default): Use the system installed ' - 'Heat.\n' - 'pod: Use an ephemeral Heat pod.\n' + 'pod (Default): Use an ephemeral Heat pod.\n' + 'installed: Use the system installed Heat.\n' 'container: Use an ephemeral Heat container.\n' 'native: Use an ephemeral Heat process.') )