-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk.go
179 lines (146 loc) · 3.33 KB
/
disk.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package sdk
import (
_ "embed"
"fmt"
"os"
"path/filepath"
"text/template"
"github.com/kdomanski/iso9660"
)
//go:embed configs/meta-data.tmpl
var metadata string
//go:embed configs/user-data.tmpl
var userdata string
//go:embed configs/network-config.tmpl
var networkConfig string
func CreateCloudInitDisk(hostname string, mac string, cidr string, gateway string, username string, password string) (string, error) {
source, err := os.MkdirTemp("", "cloudinit-*")
if err != nil {
return "", err
}
fmt.Println(source)
err = generateMetadata(source, hostname)
if err != nil {
return "", err
}
err = generateUserdata(source, username, password)
if err != nil {
return "", err
}
err = generateNetworkConfig(source, mac, cidr, gateway)
if err != nil {
return "", err
}
// check if machine is already running ... cant add disk then.
destination, _ := filepath.Abs("/tmp/cloudinit.iso")
err = createISO9660Disk(source, "cidata", destination)
if err != nil {
return "", err
}
return destination, nil
}
func createISO9660Disk(source string, label string, destination string) error {
writer, err := iso9660.NewWriter()
if err != nil {
return err
}
defer writer.Cleanup()
metadataSource := filepath.Join(source, "meta-data")
mf, err := os.Open(metadataSource)
if err != nil {
return err
}
defer mf.Close()
err = writer.AddFile(mf, "meta-data")
if err != nil {
return err
}
userdataSource := filepath.Join(source, "user-data")
uf, err := os.Open(userdataSource)
if err != nil {
return err
}
defer uf.Close()
err = writer.AddFile(uf, "user-data")
if err != nil {
return err
}
networkConfigSource := filepath.Join(source, "network-config")
nf, err := os.Open(networkConfigSource)
if err != nil {
return err
}
defer nf.Close()
err = writer.AddFile(nf, "network-config")
if err != nil {
return err
}
of, err := os.OpenFile(destination, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644)
if err != nil {
return err
}
defer of.Close()
err = writer.WriteTo(of, label)
if err != nil {
return err
}
return nil
}
func generateMetadata(destination string, hostname string) error {
tmpl, err := template.New("meta-data").Parse(metadata)
if err != nil {
return err
}
f, err := os.Create(filepath.Join(destination, "meta-data"))
if err != nil {
return err
}
defer f.Close()
err = tmpl.Execute(f, map[string]string{
"hostname": hostname,
})
if err != nil {
return err
}
return nil
}
func generateUserdata(destination string, username string, password string) error {
tmpl, err := template.New("user-data").Parse(userdata)
if err != nil {
return err
}
f, err := os.Create(filepath.Join(destination, "user-data"))
if err != nil {
return err
}
defer f.Close()
err = tmpl.Execute(f, map[string]string{
"username": username,
"password": password,
})
if err != nil {
return err
}
return nil
}
func generateNetworkConfig(destination string, mac string, cidr string, gateway string) error {
tmpl, err := template.New("network-config").Parse(networkConfig)
if err != nil {
return err
}
f, err := os.Create(filepath.Join(destination, "network-config"))
if err != nil {
return err
}
defer f.Close()
err = tmpl.Execute(f, map[string]string{
"interface": "eth0",
"mac": mac,
"cidr": cidr,
"gateway": gateway,
})
if err != nil {
return err
}
return nil
}