We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f911bd commit db0a653Copy full SHA for db0a653
operatorcourier/cli.py
@@ -58,11 +58,16 @@ def parse(self):
58
help='Path of your directory of yaml files to bundle. '
59
'Either set this or use the files argument for bundle data.')
60
verify_parser.add_argument(
61
- '--ui_validate_io',
+ '--ui-validate-io',
62
help='Validate bundle for operatorhub.io UI. '
63
'To visually confirm that your operator will be displayed correctly, '
64
'please visit https://operatorhub.io/preview and paste '
65
'your operator CSV.',
66
+ dest='ui_validate_io',
67
+ action='store_true')
68
+ verify_parser.add_argument( # DEPRECATED; BW compatibility
69
+ '--ui_validate_io',
70
+ help=argparse.SUPPRESS,
71
action='store_true')
72
73
'--validation-output',
0 commit comments