forked from toolshed/abra
fix: working provisioning post chaos testing
This commit is contained in:
@ -84,6 +84,18 @@ Your new Hetzner Cloud VPS has successfully been created! Here are the details:
|
||||
VPS IP address: %s
|
||||
VPS Root Password: %s
|
||||
|
||||
Here is what your SSH configuration (~/.ssh/config) might look like:
|
||||
|
||||
Host %s.example.com
|
||||
Hostname %s
|
||||
User root
|
||||
Port 22
|
||||
IdentityFile ~/.ssh/<your-ssh-private-key>
|
||||
|
||||
Remember, your "Host" value must be a valid publicly accessible domain name as
|
||||
Abra uses this domain to identity servers. If you specified "--ssh-auth
|
||||
password" then you may skip the IdentityFile stanza.
|
||||
|
||||
You can access this new VPS via SSH using the following command:
|
||||
|
||||
ssh root@%s
|
||||
@ -92,7 +104,11 @@ Please note, this server is not managed by Abra yet (i.e. "abra server ls" will
|
||||
not list this server)! You will need to assign a domain name record ("abra
|
||||
record new") and add the server to your Abra configuration ("abra server add")
|
||||
to have a working server that you can deploy Co-op Cloud apps to.
|
||||
`, internal.HetznerCloudName, ip, rootPassword, ip))
|
||||
`,
|
||||
internal.HetznerCloudName, ip, rootPassword,
|
||||
internal.HetznerCloudName, ip,
|
||||
ip,
|
||||
))
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user