You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cli.log.warning("use --output=yaml or json for scripting nfctl")
548
+
cli.log.warning(f"use --output=yaml or json for scripting {cli.prog_name}")
554
549
else: # output is YAML or JSON
555
550
# don't emit INFO messages to stdout because they will break deserialization
556
551
cli.log.setLevel(logging.WARN)
@@ -751,11 +746,12 @@ def delete(cli):
751
746
sysexit(1)
752
747
753
748
749
+
@cli.argument("-p", "--prefix", default=f"{cli.prog_name}-demo", help="choose a network name prefix to identify all of your demos")
754
750
@cli.argument("-j", "--jwt", action="store_boolean", default=True, help="save the one-time enroll token for each demo identity in the current directory")
'hint': "No template was found for this resource type. Replace the contents of this buffer with the request body as YAML or JSON to create a resource. networkId will be added automatically."
498
+
'hint': "No template was found for this resource type. "
499
+
" Replace the contents of this buffer with the "
500
+
" request body as YAML or JSON to create a resource."
501
+
" networkId will be added automatically."
499
502
}) # object to load when creating from scratch in nfctl
500
503
abbreviation: str=field(default='default')
501
504
status_symbols: dict=field(default_factory=lambda: RESOURCE_STATUS_SYMBOLS) # dictionary with three predictable keys: complete, progress, error, each a tuple associating status symbols with a state
0 commit comments