forked from kubermatic/kubermatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scenarios_vsphere.go
132 lines (115 loc) · 3.39 KB
/
scenarios_vsphere.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
/*
Copyright 2020 The Kubermatic Kubernetes Platform contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"github.com/kubermatic/kubermatic/api/pkg/semver"
apimodels "github.com/kubermatic/kubermatic/api/pkg/test/e2e/api/utils/apiclient/models"
)
// Returns a matrix of (version x operating system)
func getVSphereScenarios(scenarioOptions []string, versions []*semver.Semver) []testScenario {
var customFolder bool
for _, opt := range scenarioOptions {
switch opt {
case "custom-folder":
customFolder = true
}
}
var scenarios []testScenario
for _, v := range versions {
// Ubuntu
scenarios = append(scenarios, &vSphereScenario{
version: v,
nodeOsSpec: apimodels.OperatingSystemSpec{
Ubuntu: &apimodels.UbuntuSpec{},
},
customFolder: customFolder,
})
// CoreOS
scenarios = append(scenarios, &vSphereScenario{
version: v,
nodeOsSpec: apimodels.OperatingSystemSpec{
ContainerLinux: &apimodels.ContainerLinuxSpec{
// Otherwise the nodes restart directly after creation - bad for tests
DisableAutoUpdate: true,
},
},
customFolder: customFolder,
})
// CentOS
scenarios = append(scenarios, &vSphereScenario{
version: v,
nodeOsSpec: apimodels.OperatingSystemSpec{
Centos: &apimodels.CentOSSpec{},
},
customFolder: customFolder,
})
}
return scenarios
}
type vSphereScenario struct {
version *semver.Semver
nodeOsSpec apimodels.OperatingSystemSpec
customFolder bool
}
func (s *vSphereScenario) Name() string {
return fmt.Sprintf("vsphere-%s-%s", getOSNameFromSpec(s.nodeOsSpec), s.version.String())
}
func (s *vSphereScenario) Cluster(secrets secrets) *apimodels.CreateClusterSpec {
spec := &apimodels.CreateClusterSpec{
Cluster: &apimodels.Cluster{
Type: "kubernetes",
Spec: &apimodels.ClusterSpec{
Cloud: &apimodels.CloudSpec{
DatacenterName: "vsphere-ger",
Vsphere: &apimodels.VSphereCloudSpec{
Username: secrets.VSphere.Username,
Password: secrets.VSphere.Password,
},
},
Version: s.version.String(),
},
},
}
if s.customFolder {
spec.Cluster.Spec.Cloud.Vsphere.Folder = "/dc-1/vm/e2e-tests/custom_folder_test"
}
return spec
}
func (s *vSphereScenario) NodeDeployments(num int, _ secrets) ([]apimodels.NodeDeployment, error) {
osName := getOSNameFromSpec(s.nodeOsSpec)
replicas := int32(num)
return []apimodels.NodeDeployment{
{
Spec: &apimodels.NodeDeploymentSpec{
Replicas: &replicas,
Template: &apimodels.NodeSpec{
Cloud: &apimodels.NodeCloudSpec{
Vsphere: &apimodels.VSphereNodeSpec{
Template: fmt.Sprintf("machine-controller-e2e-%s", osName),
CPUs: 2,
Memory: 4096,
},
},
Versions: &apimodels.NodeVersionInfo{
Kubelet: s.version.String(),
},
OperatingSystem: &s.nodeOsSpec,
},
},
},
}, nil
}
func (s *vSphereScenario) OS() apimodels.OperatingSystemSpec {
return s.nodeOsSpec
}