forked from bsteciuk/kismatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate.go
196 lines (166 loc) · 6.19 KB
/
validate.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
package integration
import (
"bufio"
"fmt"
"html/template"
"log"
"os"
"os/exec"
"path/filepath"
"time"
homedir "github.com/mitchellh/go-homedir"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func validateMiniPkgInstallationDisabled(provisioner infrastructureProvisioner, distro linuxDistro) {
WithMiniInfrastructure(distro, provisioner, func(node NodeDeets, sshKey string) {
sshUser := node.SSHUser
if err := ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey); err == nil {
Fail("Missing dependencies, but still passed")
}
By("Adding docker repository")
prep := getPrepForDistro(distro)
theNode := []NodeDeets{node}
err := runViaSSH(prep.CommandsToPrepDockerRepo, theNode, sshKey, 5*time.Minute)
FailIfError(err, "failed to add docker repository")
if err = ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey); err == nil {
Fail("Missing dependencies, but still passed")
}
By("Installing Docker")
err = runViaSSH(prep.CommandsToInstallDocker, theNode, sshKey, 5*time.Minute)
FailIfError(err, "failed to install docker")
if err = ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey); err == nil {
Fail("Missing dependencies, but still passed")
}
By("Adding kubernetes repository")
err = runViaSSH(prep.CommandsToPrepKubernetesRepo, theNode, sshKey, 5*time.Minute)
FailIfError(err, "failed to add kubernetes repository")
if err = ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey); err == nil {
Fail("Missing dependencies, but still passed")
}
By("Installing Kubelet")
err = runViaSSH(prep.CommandsToInstallKubelet, theNode, sshKey, 5*time.Minute)
FailIfError(err, "failed to install the kubelet package")
if err = ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey); err == nil {
Fail("Missing dependencies, but still passed")
}
By("Installing Kubectl")
err = runViaSSH(prep.CommandsToInstallKubectl, theNode, sshKey, 5*time.Minute)
FailIfError(err, "failed to install the kubectl package")
if err = ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey); err == nil {
Fail("Missing dependencies, but still passed")
}
By("Installing Glusterfs Server")
err = runViaSSH(prep.CommandsToInstallGlusterfs, theNode, sshKey, 5*time.Minute)
FailIfError(err, "failed to install the glusterfs package")
err = ValidateKismaticMiniDenyPkgInstallation(node, sshUser, sshKey)
Expect(err).To(BeNil())
})
}
// ValidateKismaticMini runs validation against a mini Kubernetes cluster
func ValidateKismaticMini(node NodeDeets, user, sshKey string) PlanAWS {
By("Building a template")
template, err := template.New("planAWSOverlay").Parse(planAWSOverlay)
FailIfError(err, "Couldn't parse template")
log.Printf("Created single node for Kismatic Mini: %s (%s)", node.id, node.PublicIP)
By("Building a plan to set up an overlay network cluster on this hardware")
plan := PlanAWS{
Etcd: []NodeDeets{node},
Master: []NodeDeets{node},
Worker: []NodeDeets{node},
MasterNodeFQDN: node.Hostname,
MasterNodeShortName: node.Hostname,
SSHUser: user,
SSHKeyFile: sshKey,
}
// Create template file
f, fileErr := os.Create("kismatic-testing.yaml")
FailIfError(fileErr, "Error waiting for nodes")
defer f.Close()
w := bufio.NewWriter(f)
execErr := template.Execute(w, &plan)
FailIfError(execErr, "Error filling in plan template")
w.Flush()
// Run validation
By("Validate our plan")
err = runValidate(f.Name())
FailIfError(err, "Error validating plan")
return plan
}
func ValidateKismaticMiniDenyPkgInstallation(node NodeDeets, sshUser, sshKey string) error {
By("Building a template")
template, err := template.New("planAWSOverlay").Parse(planAWSOverlay)
FailIfError(err, "Couldn't parse template")
log.Printf("Created single node for Kismatic Mini: %s (%s)", node.id, node.PublicIP)
By("Building a plan to set up an overlay network cluster on this hardware")
plan := PlanAWS{
DisablePackageInstallation: true,
Etcd: []NodeDeets{node},
Master: []NodeDeets{node},
Worker: []NodeDeets{node},
Ingress: []NodeDeets{node},
Storage: []NodeDeets{node},
MasterNodeFQDN: node.Hostname,
MasterNodeShortName: node.Hostname,
SSHUser: sshUser,
SSHKeyFile: sshKey,
}
// Create template file
f, fileErr := os.Create("kismatic-testing.yaml")
FailIfError(fileErr, "Error waiting for nodes")
defer f.Close()
w := bufio.NewWriter(f)
execErr := template.Execute(w, &plan)
FailIfError(execErr, "Error filling in plan template")
w.Flush()
// Run validation
By("Validate our plan")
return runValidate(f.Name())
}
func ValidateKismaticMiniWithBadSSH(node NodeDeets, user, sshKey string) PlanAWS {
By("Building a template")
template, err := template.New("planAWSOverlay").Parse(planAWSOverlay)
FailIfError(err, "Couldn't parse template")
log.Printf("Created single node for Kismatic Mini: %s (%s)", node.id, node.PublicIP)
By("Building a plan to set up an overlay network cluster on this hardware")
plan := PlanAWS{
Etcd: []NodeDeets{node},
Master: []NodeDeets{node},
Worker: []NodeDeets{node},
MasterNodeFQDN: node.Hostname,
MasterNodeShortName: node.Hostname,
SSHUser: user,
SSHKeyFile: sshKey,
}
// Create template file
f, fileErr := os.Create("kismatic-testing.yaml")
FailIfError(fileErr, "Error waiting for nodes")
defer f.Close()
w := bufio.NewWriter(f)
execErr := template.Execute(w, &plan)
FailIfError(execErr, "Error filling in plan template")
w.Flush()
// Run validation
By("Validate our plan")
err = runValidate(f.Name())
FailIfSuccess(err)
return plan
}
func getBadSSHKeyFile() (string, error) {
dir, err := homedir.Dir()
if err != nil {
return "", err
}
// create empty file
_, err = os.Create(filepath.Join(dir, ".ssh", "bad.pem"))
if err != nil {
return "", fmt.Errorf("Unable to create tag file!")
}
return filepath.Join(dir, ".ssh", "bad.pem"), nil
}
func runValidate(planFile string) error {
cmd := exec.Command("./kismatic", "install", "validate", "-f", planFile)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()
}