75 lines
2.4 KiB
Go
75 lines
2.4 KiB
Go
/*
|
|
Copyright 2020 The Kubernetes Authors All rights reserved.
|
|
|
|
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"
|
|
"os/exec"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
"k8s.io/minikube/pkg/minikube/download"
|
|
)
|
|
|
|
func uploadTarball(tarballFilename, k8sVer string) error {
|
|
// Upload tarball to GCS
|
|
hostPath := path.Join("out/", tarballFilename)
|
|
gcsDest := fmt.Sprintf("gs://%s/%s/%s/", download.PreloadBucket, download.PreloadVersion, k8sVer)
|
|
cmd := exec.Command("gsutil", "cp", hostPath, gcsDest)
|
|
fmt.Printf("Running: %v\n", cmd.Args)
|
|
if output, err := cmd.CombinedOutput(); err != nil {
|
|
return errors.Wrapf(err, "uploading %s to GCS bucket: %v\n%s", hostPath, err, string(output))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func uploadArmTarballs(preloadsDir string) error {
|
|
b, err := exec.Command("ls", preloadsDir).CombinedOutput()
|
|
if err != nil {
|
|
return fmt.Errorf("failed to read files: %v\n%s", err, string(b))
|
|
}
|
|
files := strings.Split(string(b), "\n")
|
|
if len(files) == 0 {
|
|
return fmt.Errorf("no preload files found")
|
|
}
|
|
// remove trailing whitespace entry
|
|
files = files[:len(files)-1]
|
|
for _, file := range files {
|
|
preloadVersion, k8sVersion := getVersionsFromFilename(file)
|
|
hostPath := path.Join(preloadsDir, file)
|
|
gcsDest := fmt.Sprintf("gs://%s/%s/%s/", download.PreloadBucket, preloadVersion, k8sVersion)
|
|
cmd := exec.Command("gsutil", "cp", hostPath, gcsDest)
|
|
fmt.Printf("Running: %v\n", cmd.Args)
|
|
if output, err := cmd.CombinedOutput(); err != nil {
|
|
return errors.Wrapf(err, "uploading %s to GCS bucket: %v\n%s", hostPath, err, string(output))
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getVersionsFromFilename(filename string) (string, string) {
|
|
parts := strings.Split(filename, "-")
|
|
preloadVersion := parts[3]
|
|
k8sVersion := parts[4]
|
|
// this check is for "-rc" and "-beta" versions that would otherwise be stripped off
|
|
if len(parts) == 9 {
|
|
k8sVersion += fmt.Sprintf("-%s", parts[5])
|
|
}
|
|
return preloadVersion, k8sVersion
|
|
}
|