Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion operatorcourier/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,16 @@ def parse(self):
help='Path of your directory of yaml files to bundle. '
'Either set this or use the files argument for bundle data.')
verify_parser.add_argument(
'--ui_validate_io',
'--ui-validate-io',
help='Validate bundle for operatorhub.io UI. '
'To visually confirm that your operator will be displayed correctly, '
'please visit https://operatorhub.io/preview and paste '
'your operator CSV.',
dest='ui_validate_io',
action='store_true')
verify_parser.add_argument( # DEPRECATED; BW compatibility
'--ui_validate_io',
help=argparse.SUPPRESS,
action='store_true')
verify_parser.add_argument(
'--validation-output',
Expand Down