2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Fix nodedeploy -c

This commit is contained in:
Jarrod Johnson 2020-08-25 14:05:43 -04:00
parent f5f7643734
commit 14767e2909

View File

@ -69,11 +69,14 @@ def main(args):
ap.add_argument('-p', '--prepare', help='Configure for deployment without setting boot device or rebooting', action='store_true')
ap.add_argument('-m', '--maxnodes', help='Specifiy a maximum nodes to be deployed')
ap.add_argument('noderange', help='Set of nodes to deploy')
ap.add_argument('profile', help='Profile name to deploy')
ap.add_argument('profile', nargs='?', help='Profile name to deploy')
args = ap.parse_args(args)
if not args.network and not args.prepare:
if not args.network and not args.prepare and not args.clear:
sys.stderr.write('-n or -p is a required argument currently\n')
return 1
if not args.clear and args.profile is None:
sys.stderr.write('<profile> is a required argument')
return 1
c = client.Command()
c.stop_if_noderange_over(args.noderange, args.maxnodes)
if args.clear: