Make that it works in 90% of the cases. 3:30.

This commit is contained in:
2023-03-26 17:37:16 +03:00
parent 55bb5b426d
commit 23022e6d20
2 changed files with 4 additions and 2 deletions

View File

@@ -1219,6 +1219,8 @@ def create_node(provider, name=None, location=None, size=None, image=None, confi
print("\nIP: %s" % (node.public_ips[0]))
print("\nssh command: ssh -i %s secdep@%s\n" % (SECDEP_SSH_PRIVATE_KEY, node.public_ips[0]))
print("If you ever change the port adjust the command accordingly")
print("If you used the --deploy flag we changed the port to 22100 so the command is:")
print("\nssh -p 22100 -i %s secdep@%s\n" % (SECDEP_SSH_PRIVATE_KEY, node.public_ips[0]))
return node
def list_all_nodes(provider, filterIn=None, awsRegion=None):