Skip to content

Commit 9b14462

Browse files
committed
Merge branch 'release-v5.9.5'
2 parents 8d96925 + 141f0b6 commit 9b14462

File tree

5 files changed

+102
-74
lines changed

5 files changed

+102
-74
lines changed

.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
general.yes=True \
8484
general.verbose=yes || true # FIXME: sometimes config command exits with an error
8585
nfctl demo \
86+
--size medium \
8687
--regions us-west-2 us-east-2 \
8788
--provider AWS
8889
nfctl \

netfoundry/ctl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ def delete(cli):
838838
@cli.argument("-p", "--prefix", default=f"{cli.prog_name}-demo", help="choose a network name prefix to identify all of your demos")
839839
@cli.argument("-j", "--jwt", action="store_boolean", default=True, help="save the one-time enroll token for each demo identity in the current directory")
840840
@cli.argument("-e", "--echo-name", arg_only=True, action="store_true", default=False, help="only echo a friendly network name then exit")
841-
@cli.argument("-s", "--size", default="small", help=argparse.SUPPRESS) # troubleshoot scale-up instance size factor
841+
@cli.argument("-s", "--size", default="medium", help=argparse.SUPPRESS) # troubleshoot scale-up instance size factor
842842
@cli.argument("-v", "--product-version", default="default", help="network product version: 'default', 'latest', or any active semver")
843843
@cli.argument("--provider", default="AWS", help="cloud provider for hosted edge routers", choices=DC_PROVIDERS)
844844
@cli.argument("--regions", dest="regions", default=["us-west-1"], nargs="+", help="provider regions for hosted edge routers")

0 commit comments

Comments
 (0)