forked from bsteciuk/kismatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.go
268 lines (243 loc) · 7.97 KB
/
install.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package integration
import (
"bufio"
"crypto/tls"
"fmt"
"html/template"
"net/http"
"os"
"os/exec"
"path/filepath"
"time"
homedir "github.com/mitchellh/go-homedir"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func leaveIt() bool {
return os.Getenv("LEAVE_ARTIFACTS") != ""
}
func GetSSHKeyFile() (string, error) {
dir, err := homedir.Dir()
if err != nil {
return "", err
}
return filepath.Join(dir, ".ssh", "kismatic-integration-testing.pem"), nil
}
type installOptions struct {
disablePackageInstallation bool
disconnectedInstallation bool
dockerRegistryServer string
dockerRegistryCAPath string
dockerRegistryUsername string
dockerRegistryPassword string
modifyHostsFiles bool
httpProxy string
httpsProxy string
noProxy string
useDirectLVM bool
serviceCIDR string
disableCNI bool
cniProvider string
heapsterReplicas int
heapsterInfluxdbPVC string
cloudProvider string
kubeAPIServerOptions map[string]string
kubeControllerManagerOptions map[string]string
kubeSchedulerOptions map[string]string
kubeProxyOptions map[string]string
kubeletOptions map[string]string
}
func installKismaticMini(node NodeDeets, sshKey string) error {
sshUser := node.SSHUser
plan := PlanAWS{
Etcd: []NodeDeets{node},
Master: []NodeDeets{node},
Worker: []NodeDeets{node},
Ingress: []NodeDeets{node},
Storage: []NodeDeets{node},
MasterNodeFQDN: node.PublicIP,
MasterNodeShortName: node.PublicIP,
SSHKeyFile: sshKey,
SSHUser: sshUser,
}
return installKismaticWithPlan(plan, sshKey)
}
func installKismatic(nodes provisionedNodes, installOpts installOptions, sshKey string) error {
return installKismaticWithPlan(buildPlan(nodes, installOpts, sshKey), sshKey)
}
func buildPlan(nodes provisionedNodes, installOpts installOptions, sshKey string) PlanAWS {
sshUser := nodes.master[0].SSHUser
masterDNS := nodes.master[0].PublicIP
disableHelm := false
if nodes.dnsRecord != nil && nodes.dnsRecord.Name != "" {
masterDNS = nodes.dnsRecord.Name
// disable helm if using Route53
disableHelm = true
}
plan := PlanAWS{
DisablePackageInstallation: installOpts.disablePackageInstallation,
DisconnectedInstallation: installOpts.disconnectedInstallation,
Etcd: nodes.etcd,
Master: nodes.master,
Worker: nodes.worker,
Ingress: nodes.ingress,
Storage: nodes.storage,
MasterNodeFQDN: masterDNS,
MasterNodeShortName: masterDNS,
SSHKeyFile: sshKey,
SSHUser: sshUser,
DockerRegistryCAPath: installOpts.dockerRegistryCAPath,
DockerRegistryServer: installOpts.dockerRegistryServer,
DockerRegistryUsername: installOpts.dockerRegistryUsername,
DockerRegistryPassword: installOpts.dockerRegistryPassword,
ModifyHostsFiles: installOpts.modifyHostsFiles,
HTTPProxy: installOpts.httpProxy,
HTTPSProxy: installOpts.httpsProxy,
NoProxy: installOpts.noProxy,
UseDirectLVM: installOpts.useDirectLVM,
ServiceCIDR: installOpts.serviceCIDR,
DisableCNI: installOpts.disableCNI,
CNIProvider: installOpts.cniProvider,
DisableHelm: disableHelm,
HeapsterReplicas: installOpts.heapsterReplicas,
HeapsterInfluxdbPVC: installOpts.heapsterInfluxdbPVC,
CloudProvider: installOpts.cloudProvider,
KubeAPIServerOptions: installOpts.kubeAPIServerOptions,
KubeControllerManagerOptions: installOpts.kubeControllerManagerOptions,
KubeSchedulerOptions: installOpts.kubeSchedulerOptions,
KubeProxyOptions: installOpts.kubeProxyOptions,
KubeletOptions: installOpts.kubeletOptions,
}
return plan
}
func installKismaticWithPlan(plan PlanAWS, sshKey string) error {
writePlanFile(plan)
By("Punch it Chewie!")
cmd := exec.Command("./kismatic", "install", "apply", "-f", "kismatic-testing.yaml")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
// run diagnostics on error
fmt.Println("----- Running diagnose command -----")
diagsCmd := exec.Command("./kismatic", "diagnose", "-f", "kismatic-testing.yaml")
diagsCmd.Stdout = os.Stdout
diagsCmd.Stderr = os.Stderr
if errDiags := diagsCmd.Run(); errDiags != nil {
fmt.Printf("ERROR: error running diagnose command: %v", errDiags)
}
return err
}
return nil
}
func writePlanFile(plan PlanAWS) {
By("Building a template")
template, err := template.New("planAWSOverlay").Parse(planAWSOverlay)
FailIfError(err, "Couldn't parse template")
f, err := os.Create("kismatic-testing.yaml")
FailIfError(err, "Error creating plan")
defer f.Close()
w := bufio.NewWriter(f)
err = template.Execute(w, &plan)
FailIfError(err, "Error filling in plan template")
w.Flush()
}
func installKismaticWithABadNode() {
By("Building a template")
template, err := template.New("planAWSOverlay").Parse(planAWSOverlay)
FailIfError(err, "Couldn't parse template")
By("Faking infrastructure")
fakeNode := NodeDeets{
id: "FakeId",
PublicIP: "10.0.0.0",
Hostname: "FakeHostname",
}
By("Building a plan to set up an overlay network cluster on this hardware")
sshKey, err := GetSSHKeyFile()
FailIfError(err, "Error getting SSH Key file")
plan := PlanAWS{
Etcd: []NodeDeets{fakeNode},
Master: []NodeDeets{fakeNode},
Worker: []NodeDeets{fakeNode},
Ingress: []NodeDeets{fakeNode},
MasterNodeFQDN: "yep.nope",
MasterNodeShortName: "yep",
SSHUser: "Billy Rubin",
SSHKeyFile: sshKey,
}
By("Writing plan file out to disk")
f, err := os.Create("kismatic-testing.yaml")
FailIfError(err, "Error waiting for nodes")
defer f.Close()
w := bufio.NewWriter(f)
err = template.Execute(w, &plan)
FailIfError(err, "Error filling in plan template")
w.Flush()
f.Close()
By("Validing our plan")
cmd := exec.Command("./kismatic", "install", "validate", "-f", f.Name())
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err == nil {
Fail("Validation succeeeded even though it shouldn't have")
}
By("Well, try it anyway")
cmd = exec.Command("./kismatic", "install", "apply", "-f", f.Name())
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err == nil {
Fail("Application succeeeded even though it shouldn't have")
}
}
func completesInTime(dothis func(), howLong time.Duration) bool {
c1 := make(chan string, 1)
go func() {
dothis()
c1 <- "completed"
}()
select {
case <-c1:
return true
case <-time.After(howLong):
return false
}
}
func canAccessDashboard(url string) error {
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
client := http.Client{
Timeout: 1000 * time.Millisecond,
Transport: tr,
}
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return fmt.Errorf("Could not create request for ingress via %s, %v", url, err)
}
// Access the dashboard a few times to hit all replicas
for i := 0; i < 3; i++ {
resp, err := client.Do(req)
if err != nil {
return fmt.Errorf("Could not reach ingress via %s, %v", url, err)
}
if resp.StatusCode != 200 {
return fmt.Errorf("Ingress status code is not 200, got %d vi %s", resp.StatusCode, url)
}
}
return nil
}
func FailIfError(err error, message ...interface{}) {
Expect(err).ToNot(HaveOccurred(), message...)
}
func FailIfSuccess(err error) {
if err == nil {
Fail("Expected failure")
}
}
func FileExists(path string) bool {
if _, err := os.Stat(path); os.IsNotExist(err) {
return false
}
return true
}