-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
names.go
235 lines (194 loc) · 7.77 KB
/
names.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
/*
Copyright 2019 The Kubernetes Authors.
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 model
import (
"fmt"
"regexp"
"strings"
"k8s.io/klog/v2"
"k8s.io/kops/pkg/apis/kops"
"k8s.io/kops/pkg/model/iam"
"k8s.io/kops/pkg/pki"
"k8s.io/kops/pkg/truncate"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/awstasks"
"k8s.io/kops/upup/pkg/fi/cloudup/awsup"
)
// SecurityGroupName returns the security group name for the specific role
func (b *KopsModelContext) SecurityGroupName(role kops.InstanceGroupRole) string {
switch role {
case kops.InstanceGroupRoleBastion:
return "bastion." + b.ClusterName()
case kops.InstanceGroupRoleNode:
return "nodes." + b.ClusterName()
case kops.InstanceGroupRoleMaster, kops.InstanceGroupRoleAPIServer:
return "masters." + b.ClusterName()
default:
klog.Fatalf("unknown role: %v", role)
return ""
}
}
// LinkToSecurityGroup creates a task link the security group to the instncegroup
func (b *KopsModelContext) LinkToSecurityGroup(role kops.InstanceGroupRole) *awstasks.SecurityGroup {
name := b.SecurityGroupName(role)
return &awstasks.SecurityGroup{Name: &name}
}
// AutoscalingGroupName derives the autoscaling group name for us
func (b *KopsModelContext) AutoscalingGroupName(ig *kops.InstanceGroup) string {
switch ig.Spec.Role {
case kops.InstanceGroupRoleMaster:
// We need to keep this back-compatible, so we introduce the masters name,
// though the IG name suffices for uniqueness, and with sensible naming masters
// should be redundant...
return ig.ObjectMeta.Name + ".masters." + b.ClusterName()
case kops.InstanceGroupRoleAPIServer:
return ig.ObjectMeta.Name + ".apiservers." + b.ClusterName()
case kops.InstanceGroupRoleNode, kops.InstanceGroupRoleBastion:
return ig.ObjectMeta.Name + "." + b.ClusterName()
default:
klog.Fatalf("unknown InstanceGroup Role: %v", ig.Spec.Role)
return ""
}
}
func (b *KopsModelContext) LinkToAutoscalingGroup(ig *kops.InstanceGroup) *awstasks.AutoscalingGroup {
name := b.AutoscalingGroupName(ig)
return &awstasks.AutoscalingGroup{Name: &name}
}
func (b *KopsModelContext) ELBSecurityGroupName(prefix string) string {
return prefix + "-elb." + b.ClusterName()
}
func (b *KopsModelContext) LinkToELBSecurityGroup(prefix string) *awstasks.SecurityGroup {
name := b.ELBSecurityGroupName(prefix)
return &awstasks.SecurityGroup{Name: &name}
}
// LBName32 will attempt to calculate a meaningful name for an ELB given a prefix
// Will never return a string longer than 32 chars
// Note this is _not_ the primary identifier for the ELB - we use the Name tag for that.
func (b *KopsModelContext) LBName32(prefix string) string {
return awsup.GetResourceName32(b.Cluster.ObjectMeta.Name, prefix)
}
// CLBName returns CLB name plus cluster name
func (b *KopsModelContext) CLBName(prefix string) string {
return prefix + "." + b.ClusterName()
}
func (b *KopsModelContext) NLBName(prefix string) string {
return strings.ReplaceAll(prefix+"-"+b.ClusterName(), ".", "-")
}
func (b *KopsModelContext) NLBTargetGroupName(prefix string) string {
return awsup.GetResourceName32(b.Cluster.ObjectMeta.Name, prefix)
}
func (b *KopsModelContext) LinkToCLB(prefix string) *awstasks.ClassicLoadBalancer {
name := b.CLBName(prefix)
return &awstasks.ClassicLoadBalancer{Name: &name}
}
func (b *KopsModelContext) LinkToNLB(prefix string) *awstasks.NetworkLoadBalancer {
name := b.NLBName(prefix)
return &awstasks.NetworkLoadBalancer{Name: &name}
}
func (b *KopsModelContext) LinkToTargetGroup(prefix string) *awstasks.TargetGroup {
name := b.NLBTargetGroupName(prefix)
return &awstasks.TargetGroup{Name: &name}
}
func (b *KopsModelContext) LinkToVPC() *awstasks.VPC {
name := b.ClusterName()
return &awstasks.VPC{Name: &name}
}
func (b *KopsModelContext) LinkToAmazonVPCIPv6CIDR() *awstasks.VPCAmazonIPv6CIDRBlock {
return &awstasks.VPCAmazonIPv6CIDRBlock{Name: fi.String("AmazonIPv6")}
}
func (b *KopsModelContext) LinkToDNSZone() *awstasks.DNSZone {
name := b.NameForDNSZone()
return &awstasks.DNSZone{Name: &name}
}
func (b *KopsModelContext) NameForDNSZone() string {
name := b.Cluster.Spec.DNSZone
return name
}
// IAMName determines the name of the IAM Role and Instance Profile to use for the InstanceGroup
func (b *KopsModelContext) IAMName(role kops.InstanceGroupRole) string {
var rolename string
switch role {
case kops.InstanceGroupRoleMaster:
rolename = "masters." + b.ClusterName()
case kops.InstanceGroupRoleAPIServer:
rolename = "apiservers." + b.ClusterName()
case kops.InstanceGroupRoleBastion:
rolename = "bastions." + b.ClusterName()
case kops.InstanceGroupRoleNode:
rolename = "nodes." + b.ClusterName()
default:
klog.Fatalf("unknown InstanceGroup Role: %q", role)
}
return truncate.TruncateString(rolename, truncate.TruncateStringOptions{MaxLength: iam.MaxLengthIAMRoleName, AlwaysAddHash: false})
}
var roleNamRegExp = regexp.MustCompile(`([^/]+$)`)
// FindCustomAuthNameFromArn parses the name of a instance profile from the arn
func FindCustomAuthNameFromArn(arn string) (string, error) {
if arn == "" {
return "", fmt.Errorf("unable to parse role arn as it is not set")
}
rs := roleNamRegExp.FindStringSubmatch(arn)
if len(rs) >= 2 {
return rs[1], nil
}
return "", fmt.Errorf("unable to parse role arn %q", arn)
}
func (b *KopsModelContext) LinkToIAMInstanceProfile(ig *kops.InstanceGroup) (*awstasks.IAMInstanceProfile, error) {
if ig.Spec.IAM != nil && ig.Spec.IAM.Profile != nil {
name, err := FindCustomAuthNameFromArn(fi.StringValue(ig.Spec.IAM.Profile))
return &awstasks.IAMInstanceProfile{Name: &name}, err
}
name := b.IAMName(ig.Spec.Role)
return &awstasks.IAMInstanceProfile{Name: &name}, nil
}
// SSHKeyName computes a unique SSH key name, combining the cluster name and the SSH public key fingerprint.
// If an SSH key name is provided in the cluster configuration, it will use that instead.
func (b *KopsModelContext) SSHKeyName() (string, error) {
// use configured SSH key name if present
sshKeyName := b.Cluster.Spec.SSHKeyName
if sshKeyName != nil && *sshKeyName != "" {
return *sshKeyName, nil
}
fingerprint, err := pki.ComputeOpenSSHKeyFingerprint(string(b.SSHPublicKeys[0]))
if err != nil {
return "", err
}
name := "kubernetes." + b.Cluster.ObjectMeta.Name + "-" + fingerprint
return name, nil
}
func (b *KopsModelContext) LinkToSSHKey() (*awstasks.SSHKey, error) {
sshKeyName, err := b.SSHKeyName()
if err != nil {
return nil, err
}
return &awstasks.SSHKey{Name: &sshKeyName}, nil
}
func (b *KopsModelContext) NamePublicRouteTableInZone(zoneName string) string {
return "public-" + zoneName + "." + b.ClusterName()
}
func (b *KopsModelContext) LinkToPublicRouteTableInZone(zoneName string) *awstasks.RouteTable {
return &awstasks.RouteTable{Name: fi.String(b.NamePublicRouteTableInZone(zoneName))}
}
func (b *KopsModelContext) NamePrivateRouteTableInZone(zoneName string) string {
return "private-" + zoneName + "." + b.ClusterName()
}
func (b *KopsModelContext) LinkToPrivateRouteTableInZone(zoneName string) *awstasks.RouteTable {
return &awstasks.RouteTable{Name: fi.String(b.NamePrivateRouteTableInZone(zoneName))}
}
func (b *KopsModelContext) InstanceName(ig *kops.InstanceGroup, suffix string) string {
return b.AutoscalingGroupName(ig) + suffix
}
func QueueNamePrefix(clusterName string) string {
// periods aren't allowed in queue name
return strings.ReplaceAll(clusterName, ".", "-")
}