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 db15ee3 commit d0eb9fbCopy full SHA for d0eb9fb
hpecp/cli/k8sworker.py
@@ -86,14 +86,14 @@ def create_with_ssh_key(
86
"""
87
if ssh_key is None and ssh_key_file is None:
88
print(
89
- "Either ssh_key or ssh_key_file must be provided",
+ "At least one of ssh_key or ssh_key_file must be provided",
90
file=sys.stderr,
91
)
92
sys.exit(1)
93
94
if ssh_key is not None and ssh_key_file is not None:
95
96
+ "Either ssh_key or ssh_key_file must be provided, but not both.",
97
98
99
0 commit comments