simplifying user flow

This commit is contained in:
Kosta Mushkin
2025-06-25 15:51:41 -07:00
parent 73cbe2d98c
commit dea2e3ef4e
6 changed files with 66 additions and 7 deletions
@@ -70,7 +70,7 @@ def main():
# Step 1: Create a ZVMLClient instance
logging.info(f"Initializing ZVMLClient for ZVM at {ZVM_HOST}")
parser = argparse.ArgumentParser(description='Create VPG and add specified VMs')
parser.add_argument('--vm-name', required=True,
parser.add_argument('--vm-name', default="CRM-3",
help='VM name to add to the VPG')
parser.add_argument('--vpg-name', default="Test-VPG-Python",
help='Name of the VPG to create (default: Test-VPG-Python)')
@@ -92,7 +92,7 @@ def main():
# TODO: Add code to parse arguments
# HINT: Use this syntax:
parser = argparse.ArgumentParser(description='Create VPG and add specified VMs')
parser.add_argument('--vm-name', required=True,
parser.add_argument('--vm-name', default="CRM-3",
help='VM name to add to the VPG')
parser.add_argument('--vpg-name', default="Test-VPG-Python",
help='Name of the VPG to create (default: Test-VPG-Python)')