forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aks.go
380 lines (317 loc) · 11.8 KB
/
aks.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
Copyright 2020 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 main
import (
"context"
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/json"
"encoding/pem"
"flag"
"fmt"
"log"
mathrand "math/rand"
"os"
"os/exec"
"path"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/profiles/latest/containerservice/mgmt/containerservice"
"github.com/Azure/go-autorest/autorest/azure"
"golang.org/x/crypto/ssh"
)
const charset = "abcdefghijklmnopqrstuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
var aksCustomHeaders = flag.String("aks-custom-headers", "", "comma-separated list of key=value tuples for headers to apply to the cluster creation request.")
type aksDeployer struct {
azureCreds *Creds
azureClient *AzureClient
azureEnvironment string
templateURL string
outputDir string
resourceGroup string
resourceName string
location string
k8sVersion string
customHeaders map[string]string
}
func newAksDeployer() (*aksDeployer, error) {
if err := validateAksFlags(); err != nil {
return nil, err
}
customHeaders := map[string]string{}
if *aksCustomHeaders != "" {
tokens := strings.Split(*aksCustomHeaders, ",")
for _, token := range tokens {
parts := strings.Split(token, "=")
if len(parts) != 2 {
return nil, fmt.Errorf("incorrectly formatted custom header, use format key=val[,key2=val2]: %s", token)
}
customHeaders[parts[0]] = parts[1]
}
}
creds, err := getAzCredentials()
if err != nil {
return nil, fmt.Errorf("failed to get azure credentials: %w", err)
}
env, err := azure.EnvironmentFromName(*aksAzureEnv)
if err != nil {
return nil, fmt.Errorf("failed to determine azure environment: %w", err)
}
var client *AzureClient
if client, err = getAzureClient(env,
creds.SubscriptionID,
creds.ClientID,
creds.TenantID,
creds.ClientSecret,
); err != nil {
return nil, fmt.Errorf("error trying to get Azure Client: %w", err)
}
outputDir, err := os.MkdirTemp(os.Getenv("HOME"), "aks")
if err != nil {
return nil, fmt.Errorf("error creating tempdir: %w", err)
}
a := &aksDeployer{
azureCreds: creds,
azureClient: client,
azureEnvironment: *aksAzureEnv,
templateURL: *aksTemplateURL,
outputDir: outputDir,
resourceGroup: *aksResourceGroupName,
resourceName: *aksResourceName,
location: *aksLocation,
k8sVersion: *aksOrchestratorRelease,
customHeaders: customHeaders,
}
if err := a.dockerLogin(); err != nil {
return nil, err
}
return a, nil
}
func validateAksFlags() error {
if *aksCredentialsFile == "" {
return fmt.Errorf("no credentials file path specified")
}
if *aksResourceName == "" {
// Must be short or managed node resource group name will exceed 80 char
*aksResourceName = "kubetest-" + randString(8)
}
if *aksResourceGroupName == "" {
*aksResourceGroupName = *aksResourceName
}
if *aksDNSPrefix == "" {
*aksDNSPrefix = *aksResourceName
}
return nil
}
func (a *aksDeployer) Up() error {
log.Printf("Creating AKS cluster %v in resource group %v", a.resourceName, a.resourceGroup)
templateFile, err := downloadFromURL(a.templateURL, path.Join(a.outputDir, "kubernetes.json"), 2)
if err != nil {
return fmt.Errorf("error downloading AKS cluster template: %v with error %w", a.templateURL, err)
}
template, err := os.ReadFile(templateFile)
if err != nil {
return fmt.Errorf("failed to read downloaded cluster template file: %w", err)
}
var model containerservice.ManagedCluster
if err := json.Unmarshal(template, &model); err != nil {
return fmt.Errorf("failed to unmarshal managedcluster model: %w", err)
}
_, sshPublicKey, err := newSSHKeypair(4096)
if err != nil {
return fmt.Errorf("failed to generate ssh key for cluster creation: %w", err)
}
*(*model.LinuxProfile.SSH.PublicKeys)[0].KeyData = string(sshPublicKey)
model.ManagedClusterProperties.DNSPrefix = aksDNSPrefix
model.ManagedClusterProperties.ServicePrincipalProfile.ClientID = &a.azureCreds.ClientID
model.ManagedClusterProperties.ServicePrincipalProfile.Secret = &a.azureCreds.ClientSecret
model.Location = &a.location
model.ManagedClusterProperties.KubernetesVersion = &a.k8sVersion
log.Printf("Creating Azure resource group: %v for cluster deployment.", a.resourceGroup)
_, err = a.azureClient.EnsureResourceGroup(context.Background(), a.resourceGroup, a.location, nil)
if err != nil {
return fmt.Errorf("could not ensure resource group: %w", err)
}
req, err := a.azureClient.managedClustersClient.CreateOrUpdatePreparer(context.Background(), a.resourceGroup, a.resourceName, model)
if err != nil {
return fmt.Errorf("failed to prepare cluster creation: %w", err)
}
for key, val := range a.customHeaders {
req.Header[key] = []string{val}
}
future, err := a.azureClient.managedClustersClient.CreateOrUpdateSender(req)
if err != nil {
return fmt.Errorf("failed to respond to cluster creation: %w", err)
}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute*25)
defer cancel()
if err := future.WaitForCompletionRef(ctx, a.azureClient.managedClustersClient.Client); err != nil {
return fmt.Errorf("failed long async cluster creation: %w", err)
}
credentialList, err := a.azureClient.managedClustersClient.ListClusterAdminCredentials(context.Background(), a.resourceGroup, a.resourceName, "")
if err != nil {
return fmt.Errorf("failed to list kubeconfigs: %w", err)
}
if credentialList.Kubeconfigs == nil || len(*credentialList.Kubeconfigs) < 1 {
return fmt.Errorf("no kubeconfigs available for the aks cluster")
}
kubeconfigPath := path.Join(a.outputDir, "kubeconfig")
if err := os.WriteFile(kubeconfigPath, *(*credentialList.Kubeconfigs)[0].Value, 0644); err != nil {
return fmt.Errorf("failed to write kubeconfig out")
}
managedCluster, err := future.Result(a.azureClient.managedClustersClient)
if err != nil {
return fmt.Errorf("failed to extract resulting managed cluster: %w", err)
}
masterIP := *managedCluster.ManagedClusterProperties.Fqdn
masterInternalIP := masterIP
if err := os.Setenv("KUBE_MASTER_IP", strings.TrimSpace(string(masterIP))); err != nil {
return err
}
// MASTER_IP variable is required by the clusterloader. It requires to have master ip provided,
// due to master being unregistered.
if err := os.Setenv("MASTER_IP", strings.TrimSpace(string(masterIP))); err != nil {
return err
}
// MASTER_INTERNAL_IP variable is needed by the clusterloader2 when running on kubemark clusters.
if err := os.Setenv("MASTER_INTERNAL_IP", strings.TrimSpace(string(masterInternalIP))); err != nil {
return err
}
if err := os.Setenv("KUBECONFIG", kubeconfigPath); err != nil {
return err
}
log.Printf("Populating Azure cloud config")
isVMSS := (*managedCluster.ManagedClusterProperties.AgentPoolProfiles)[0].Type == "" || (*managedCluster.ManagedClusterProperties.AgentPoolProfiles)[0].Type == availabilityProfileVMSS
if err := populateAzureCloudConfig(isVMSS, *a.azureCreds, a.azureEnvironment, a.resourceGroup, a.location, a.outputDir); err != nil {
return err
}
return nil
}
func (a *aksDeployer) IsUp() error { return isUp(a) }
func (a *aksDeployer) DumpClusterLogs(localPath, gcsPath string) error {
if !*aksDumpClusterLogs {
log.Print("Skipping DumpClusterLogs")
return nil
}
if err := os.Setenv("ARTIFACTS", localPath); err != nil {
return err
}
logDumper := func() error {
// Extract log dump script and manifest from cloud-provider-azure repo
const logDumpURLPrefix string = "https://raw.githubusercontent.com/kubernetes-sigs/cloud-provider-azure/master/hack/log-dump/"
logDumpScript, err := downloadFromURL(logDumpURLPrefix+"log-dump.sh", path.Join(a.outputDir, "log-dump.sh"), 2)
if err != nil {
return fmt.Errorf("error downloading log dump script: %w", err)
}
if err := control.FinishRunning(exec.Command("chmod", "+x", logDumpScript)); err != nil {
return fmt.Errorf("error changing access permission for %s: %w", logDumpScript, err)
}
if _, err := downloadFromURL(logDumpURLPrefix+"log-dump-daemonset.yaml", path.Join(a.outputDir, "log-dump-daemonset.yaml"), 2); err != nil {
return fmt.Errorf("error downloading log dump manifest: %w", err)
}
if err := control.FinishRunning(exec.Command("bash", "-c", logDumpScript)); err != nil {
return fmt.Errorf("error running log collection script %s: %w", logDumpScript, err)
}
return nil
}
return logDumper()
}
// NB(alexeldeib): order of execution is when running scalability tests is:
// kubemarkUp -> IsUp -> TestSetup -> Up -> TestSetup
// When executing other tests, the order is:
// Up -> TestSetup
// The kubeconfig must be available during kubemark tests, so we have to set it both in TestSetup and in Up.
// The masterIP and masterInternalIP must be available for all tests.
func (a *aksDeployer) TestSetup() error {
if err := os.Setenv("KUBEMARK_RESOURCE_GROUP", *aksResourceGroupName); err != nil {
return err
}
if err := os.Setenv("KUBEMARK_RESOURCE_NAME", *aksResourceName); err != nil {
return err
}
if err := os.Setenv("CLOUD_PROVIDER", "aks"); err != nil {
return err
}
return nil
}
func (a *aksDeployer) Down() error {
log.Printf("Deleting resource group: %v.", a.resourceGroup)
return a.azureClient.DeleteResourceGroup(context.Background(), a.resourceGroup)
}
func (a *aksDeployer) GetClusterCreated(_ string) (time.Time, error) { return time.Now(), nil }
// KubectlCommand uses the default command configuration.
func (a *aksDeployer) KubectlCommand() (*exec.Cmd, error) { return nil, nil }
func newSSHKeypair(bits int) (private, public []byte, err error) {
// Private Key generation
privateKey, err := rsa.GenerateKey(rand.Reader, bits)
if err != nil {
return nil, nil, err
}
// Validate Private Key
err = privateKey.Validate()
if err != nil {
return nil, nil, err
}
// Get ASN.1 DER format
privDER := x509.MarshalPKCS1PrivateKey(privateKey)
// pem.Block
privBlock := pem.Block{
Type: "RSA PRIVATE KEY",
Headers: nil,
Bytes: privDER,
}
// Private key in PEM format
privBytes := pem.EncodeToMemory(&privBlock)
publicKey, err := ssh.NewPublicKey(&privateKey.PublicKey)
if err != nil {
return nil, nil, err
}
pubBytes := ssh.MarshalAuthorizedKey(publicKey)
return privBytes, pubBytes, nil
}
func (a *aksDeployer) dockerLogin() error {
username := ""
pwd := ""
server := ""
if !strings.Contains(imageRegistry, "azurecr.io") {
// if REGISTRY is not ACR, then use docker cred
log.Println("Attempting Docker login with docker cred.")
username = os.Getenv("DOCKER_USERNAME")
passwordFile := os.Getenv("DOCKER_PASSWORD_FILE")
password, err := os.ReadFile(passwordFile)
if err != nil {
return fmt.Errorf("error reading docker password file %v: %w", passwordFile, err)
}
pwd = strings.TrimSuffix(string(password), "\n")
} else {
// if REGISTRY is ACR, then use azure credential
log.Println("Attempting Docker login with azure cred.")
username = a.azureCreds.ClientID
pwd = a.azureCreds.ClientSecret
server = imageRegistry
}
cmd := exec.Command("docker", "login", fmt.Sprintf("--username=%s", username), fmt.Sprintf("--password=%s", pwd), server)
if out, err := cmd.CombinedOutput(); err != nil {
return fmt.Errorf("failed Docker login with output %s\n error: %w", out, err)
}
log.Println("Docker login success.")
return nil
}
func randString(length int) string {
b := make([]byte, length)
for i := range b {
b[i] = charset[mathrand.Intn(len(charset))]
}
return string(b)
}