fix: working provisioning post chaos testing
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-10-25 10:06:16 +02:00
parent a7970132c2
commit 8772217f41
3 changed files with 124 additions and 84 deletions

View File

@ -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
}