Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
#28: Correct default value for node number
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Nov 11, 2020
1 parent 5facbf4 commit d16b2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rkd_harbor/tasks/deployment/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def configure_argparse(self, parser: ArgumentParser):
self._add_vault_arguments_to_argparse(parser)

parser.add_argument('--group', help='Node group eg. "production"', required=True)
parser.add_argument('--num', help='Node number from given group, defaults to "0"', default="0")
parser.add_argument('--num', help='Node number from given group, defaults to "1"', default="1")
parser.add_argument('--print-password', help='Print user password', action='store_true')

def get_declared_envs(self) -> Dict[str, str]:
Expand Down

0 comments on commit d16b2df

Please sign in to comment.