Skip to content

Commit

Permalink
Mark GitHub and Registry access configuration as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvaughn committed Jun 16, 2020
1 parent ac8ee47 commit 4c74377
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tapis_cli/commands/taccapis/v2/apim/gitserver/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class GitServerOpts(ParserExtender):
def extend_parser(parser):
"""Configures a Command to accept git server config
"""
git_group = parser.add_argument_group('GitHub Access')
git_group = parser.add_argument_group('GitHub Access (Optional)')
git_group.add_argument('--git-username',
metavar='USERNAME',
help='Git username')
Expand Down
2 changes: 1 addition & 1 deletion tapis_cli/commands/taccapis/v2/apim/registry/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class RegistryOpts(ParserExtender):
def extend_parser(parser):
"""Configures a Command to accept container registry config
"""
reg_group = parser.add_argument_group('Registry Access')
reg_group = parser.add_argument_group('Container Registry Access (Optional)')
reg_group.add_argument('--registry-url',
metavar='URL',
help='Registry URL')
Expand Down

0 comments on commit 4c74377

Please sign in to comment.