Merge "Profile id or name is a default profile"

This commit is contained in:
Jenkins 2017-07-11 09:26:55 +00:00 committed by Gerrit Code Review
commit d05fc94fb3
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ class CreateCluster(command.ShowOne):
'--profile',
metavar='<profile>',
required=True,
help=_('Profile Id or name used for this cluster')
help=_('Default profile Id or name used for this cluster')
)
parser.add_argument(
'name',

View File

@ -558,7 +558,7 @@ def _show_cluster(service, cluster_id):
@utils.arg('-p', '--profile', metavar='<PROFILE>', required=True,
help=_('Profile Id or name used for this cluster.'))
help=_('Default profile Id or name used for this cluster.'))
@utils.arg('-n', '--min-size', metavar='<MIN-SIZE>', default=0,
help=_('Min size of the cluster. Default to 0.'))
@utils.arg('-m', '--max-size', metavar='<MAX-SIZE>', default=-1,