forked from kubermatic/kubermatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
108 lines (89 loc) · 3.22 KB
/
util.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
/*
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 machine
import (
"fmt"
"reflect"
apiv1 "github.com/kubermatic/kubermatic/api/pkg/api/v1"
)
var userNameMap = map[string]string{
"Digitalocean:Ubuntu": "root",
"Digitalocean:ContainerLinux": "core",
"Digitalocean:Flatcar": "core",
"Digitalocean:CentOS": "root",
"Hetzner:Ubuntu": "root",
"Hetzner:CentOS": "root",
"Azure:Ubuntu": "ubuntu",
"Azure:ContainerLinux": "core",
"Azure:Flatcar": "core",
"Azure:CentOS": "centos",
"Azure:RHEL": "rhel",
"VSphere:Ubuntu": "ubuntu",
"VSphere:ContainerLinux": "core",
"VSphere:Flatcar": "core",
"VSphere:CentOS": "centos",
"VSphere:RHEL": "cloud-user",
"AWS:Ubuntu": "ubuntu",
"AWS:ContainerLinux": "core",
"AWS:Flatcar": "core",
"AWS:CentOS": "centos",
"AWS:SLES": "ec2-user",
"AWS:RHEL": "ec2-user",
"Openstack:RHEL": "cloud-user",
"Openstack:Ubuntu": "ubuntu",
"Openstack:ContainerLinux": "core",
"Openstack:Flatcar": "core",
"Openstack:CentOS": "centos",
"Packet:Ubuntu": "root",
"Packet:ContainerLinux": "core",
"Packet:Flatcar": "core",
"Packet:CentOS": "root",
"GCP:Ubuntu": "ubuntu",
"GCP:RHEL": "cloud-user",
"GCP:ContainerLinux": "core",
"GCP:Flatcar": "core",
}
// GetSSHUserName returns SSH login name for the provider and distribution
func GetSSHUserName(distribution *apiv1.OperatingSystemSpec, cloudProvider *apiv1.NodeCloudSpec) (string, error) {
distributionName, err := getDistributionName(distribution)
if err != nil {
return "", err
}
providerName, err := getProviderName(cloudProvider)
if err != nil {
return "", err
}
loginName, ok := userNameMap[fmt.Sprintf("%s:%s", providerName, distributionName)]
if ok {
return loginName, nil
}
return "unknown", nil
}
func getDistributionName(distribution *apiv1.OperatingSystemSpec) (string, error) {
val := reflect.ValueOf(distribution).Elem()
for i := 0; i < val.NumField(); i++ {
if !val.Field(i).IsNil() {
return val.Type().Field(i).Name, nil
}
}
return "", fmt.Errorf("no operating system set")
}
func getProviderName(cloudProvider *apiv1.NodeCloudSpec) (string, error) {
val := reflect.ValueOf(cloudProvider).Elem()
for i := 0; i < val.NumField(); i++ {
if !val.Field(i).IsNil() {
return val.Type().Field(i).Name, nil
}
}
return "", fmt.Errorf("no cloud provider set")
}