forked from linuxkit/linuxkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider_vultr.go
128 lines (107 loc) · 3.29 KB
/
provider_vultr.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"time"
)
const (
vultrMetaDataURL = "http://169.254.169.254/v1/"
)
// ProviderVultr is the type implementing the Provider interface for Vultr
type ProviderVultr struct {
}
// NewVultr returns a new ProviderVultr
func NewVultr() *ProviderVultr {
return &ProviderVultr{}
}
func (p *ProviderVultr) String() string {
return "Vultr"
}
// Probe checks if we are running on Vultr
func (p *ProviderVultr) Probe() bool {
// Getting the index should always work...
_, err := vultrGet(vultrMetaDataURL)
return (err == nil)
}
// Extract gets both the Vultr specific and generic userdata
func (p *ProviderVultr) Extract() ([]byte, error) {
// Get host name. This must not fail
hostname, err := vultrGet(vultrMetaDataURL + "hostname")
if err != nil {
return nil, err
}
err = ioutil.WriteFile(path.Join(ConfigPath, Hostname), hostname, 0644)
if err != nil {
return nil, fmt.Errorf("Vultr: Failed to write hostname: %s", err)
}
// public ipv4
vultrMetaGet("interfaces/0/ipv4/address", "public_ipv4", 0644)
// private ipv4
vultrMetaGet("interfaces/1/ipv4/address", "private_ipv4", 0644)
// private netmask
vultrMetaGet("interfaces/1/ipv4/netmask", "private_netmask", 0644)
// region code
vultrMetaGet("region/regioncode", "region_code", 0644)
// instance-id
vultrMetaGet("instanceid", "instance_id", 0644)
// ssh
if err := p.handleSSH(); err != nil {
log.Printf("Vultr: Failed to get ssh data: %s", err)
}
return nil, nil
}
// lookup a value (lookupName) in Vultr metaservice and store in given fileName
func vultrMetaGet(lookupName string, fileName string, fileMode os.FileMode) {
if lookupValue, err := vultrGet(vultrMetaDataURL + lookupName); err == nil {
// we got a value from the metadata server, now save to filesystem
err = ioutil.WriteFile(path.Join(ConfigPath, fileName), lookupValue, fileMode)
if err != nil {
// we couldn't save the file for some reason
log.Printf("Vultr: Failed to write %s:%s %s", fileName, lookupValue, err)
}
} else {
// we did not get a value back from the metadata server
log.Printf("Vultr: Failed to get %s: %s", lookupName, err)
}
}
// vultrGet requests and extracts the requested URL
func vultrGet(url string) ([]byte, error) {
var client = &http.Client{
Timeout: time.Second * 2,
}
req, err := http.NewRequest("", url, nil)
if err != nil {
return nil, fmt.Errorf("Vultr: http.NewRequest failed: %s", err)
}
resp, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("Vultr: Could not contact metadata service: %s", err)
}
if resp.StatusCode != 200 {
return nil, fmt.Errorf("Vultr: Status not ok: %d", resp.StatusCode)
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("Vultr: Failed to read http response: %s", err)
}
return body, nil
}
// SSH keys:
func (p *ProviderVultr) handleSSH() error {
sshKeys, err := vultrGet(vultrMetaDataURL + "public-keys")
if err != nil {
return fmt.Errorf("Failed to get sshKeys: %s", err)
}
if err := os.Mkdir(path.Join(ConfigPath, SSH), 0755); err != nil {
return fmt.Errorf("Failed to create %s: %s", SSH, err)
}
err = ioutil.WriteFile(path.Join(ConfigPath, SSH, "authorized_keys"), sshKeys, 0600)
if err != nil {
return fmt.Errorf("Failed to write ssh keys: %s", err)
}
return nil
}