-
Notifications
You must be signed in to change notification settings - Fork 286
/
vspheremachineconfig.go
150 lines (129 loc) Β· 5.02 KB
/
vspheremachineconfig.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
package v1alpha1
import (
"fmt"
"io/ioutil"
"strings"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/yaml"
"github.com/aws/eks-anywhere/pkg/logger"
)
const (
VSphereMachineConfigKind = "VSphereMachineConfig"
DefaultVSphereDiskGiB = 25
DefaultVSphereNumCPUs = 2
DefaultVSphereMemoryMiB = 8192
DefaultVSphereOSFamily = Bottlerocket
bottlerocketDefaultUser = "ec2-user"
ubuntuDefaultUser = "capv"
)
// Used for generating yaml for generate clusterconfig command.
func NewVSphereMachineConfigGenerate(name string) *VSphereMachineConfigGenerate {
return &VSphereMachineConfigGenerate{
TypeMeta: metav1.TypeMeta{
Kind: VSphereMachineConfigKind,
APIVersion: SchemeBuilder.GroupVersion.String(),
},
ObjectMeta: ObjectMeta{
Name: name,
},
Spec: VSphereMachineConfigSpec{
DiskGiB: DefaultVSphereDiskGiB,
NumCPUs: DefaultVSphereNumCPUs,
MemoryMiB: DefaultVSphereMemoryMiB,
OSFamily: DefaultVSphereOSFamily,
Users: []UserConfiguration{{
Name: "ec2-user",
SshAuthorizedKeys: []string{"ssh-rsa AAAA..."},
}},
},
}
}
func (c *VSphereMachineConfigGenerate) APIVersion() string {
return c.TypeMeta.APIVersion
}
func (c *VSphereMachineConfigGenerate) Kind() string {
return c.TypeMeta.Kind
}
func (c *VSphereMachineConfigGenerate) Name() string {
return c.ObjectMeta.Name
}
func GetVSphereMachineConfigs(fileName string) (map[string]*VSphereMachineConfig, error) {
configs := make(map[string]*VSphereMachineConfig)
content, err := ioutil.ReadFile(fileName)
if err != nil {
return nil, fmt.Errorf("unable to read file due to: %v", err)
}
for _, c := range strings.Split(string(content), YamlSeparator) {
var config VSphereMachineConfig
if err = yaml.UnmarshalStrict([]byte(c), &config); err == nil {
if config.Kind == VSphereMachineConfigKind {
configs[config.Name] = &config
continue
}
}
_ = yaml.Unmarshal([]byte(c), &config) // this is to check if there is a bad spec in the file
if config.Kind == VSphereMachineConfigKind {
return nil, fmt.Errorf("unable to unmarshall content from file due to: %v", err)
}
}
if len(configs) == 0 {
return nil, fmt.Errorf("unable to find kind %v in file", VSphereMachineConfigKind)
}
return configs, nil
}
func setVSphereMachineConfigDefaults(machineConfig *VSphereMachineConfig) {
if len(machineConfig.Spec.Folder) <= 0 {
logger.Info("VSphereMachineConfig Folder is not set or is empty. Defaulting to root vSphere folder.")
}
if machineConfig.Spec.MemoryMiB <= 0 {
logger.V(1).Info("VSphereMachineConfig MemoryMiB is not set or is empty. Defaulting to 8192.", "machineConfig", machineConfig.Name)
machineConfig.Spec.MemoryMiB = 8192
}
if machineConfig.Spec.MemoryMiB < 2048 {
logger.Info("Warning: VSphereMachineConfig MemoryMiB should not be less than 2048. Defaulting to 2048. Recommended memory is 8192.", "machineConfig", machineConfig.Name)
machineConfig.Spec.MemoryMiB = 2048
}
if machineConfig.Spec.NumCPUs <= 0 {
logger.V(1).Info("VSphereMachineConfig NumCPUs is not set or is empty. Defaulting to 2.", "machineConfig", machineConfig.Name)
machineConfig.Spec.NumCPUs = 2
}
if len(machineConfig.Spec.Users) <= 0 {
machineConfig.Spec.Users = []UserConfiguration{{}}
}
if len(machineConfig.Spec.Users[0].SshAuthorizedKeys) <= 0 {
machineConfig.Spec.Users[0].SshAuthorizedKeys = []string{""}
}
if machineConfig.Spec.OSFamily == "" {
logger.Info("Warning: OS family not specified in machine config specification. Defaulting to Bottlerocket.")
machineConfig.Spec.OSFamily = Bottlerocket
}
if len(machineConfig.Spec.Users) == 0 || machineConfig.Spec.Users[0].Name == "" {
if machineConfig.Spec.OSFamily == Bottlerocket {
machineConfig.Spec.Users[0].Name = bottlerocketDefaultUser
} else {
machineConfig.Spec.Users[0].Name = ubuntuDefaultUser
}
logger.V(1).Info("SSHUsername is not set or is empty for VSphereMachineConfig, using default", "machineConfig", machineConfig.Name, "user", machineConfig.Spec.Users[0].Name)
}
}
func validateVSphereMachineConfig(config *VSphereMachineConfig) error {
if len(config.Spec.Datastore) <= 0 {
return fmt.Errorf("VSphereMachineConfig %s datastore is not set or is empty", config.Name)
}
if len(config.Spec.ResourcePool) <= 0 {
return fmt.Errorf("VSphereMachineConfig %s VM resourcePool is not set or is empty", config.Name)
}
if config.Spec.OSFamily != Bottlerocket && config.Spec.OSFamily != Ubuntu && config.Spec.OSFamily != RedHat {
return fmt.Errorf("VSphereMachineConfig %s osFamily: %s is not supported, please use one of the following: %s, %s, %s", config.Name, config.Spec.OSFamily, Bottlerocket, Ubuntu, RedHat)
}
if config.Spec.OSFamily == Bottlerocket && config.Spec.Users[0].Name != bottlerocketDefaultUser {
return fmt.Errorf("SSHUsername %s is invalid. Please use 'ec2-user' for Bottlerocket", config.Spec.Users[0].Name)
}
return nil
}
func validateVSphereMachineConfigHasTemplate(config *VSphereMachineConfig) error {
if config.Spec.Template == "" {
return fmt.Errorf("template field is required")
}
return nil
}