-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use all kops mirrors to determine artifacts hashes
- Loading branch information
Ciprian Hacman
committed
Sep 18, 2020
1 parent
1d000de
commit 3bcce67
Showing
6 changed files
with
94 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["mirrors.go"], | ||
importpath = "k8s.io/kops/util/pkg/mirrors", | ||
visibility = ["//visibility:public"], | ||
deps = ["//:go_default_library"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
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 mirrors | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"k8s.io/kops" | ||
) | ||
|
||
const ( | ||
defaultKopsMirrorBase = "https://kubeupv2.s3.amazonaws.com/kops/%s/" | ||
githubKopsMirrorBase = "https://github.com/kubernetes/kops/releases/download/v%s/" | ||
kubernetesKopsMirrorBase = "https://artifacts.k8s.io/binaries/kops/%s/" | ||
) | ||
|
||
func FindUrlMirrors(u string) []string { | ||
// Use the mirrors to also find hashes. | ||
baseURLString := fmt.Sprintf(defaultKopsMirrorBase, kops.Version) | ||
if !strings.HasSuffix(baseURLString, "/") { | ||
baseURLString += "/" | ||
} | ||
|
||
var mirrors []string | ||
if strings.HasPrefix(u, baseURLString) { | ||
suffix := strings.TrimPrefix(u, baseURLString) | ||
// artifacts.k8s.io is the official and preferred mirror. | ||
mirrors = append(mirrors, fmt.Sprintf(kubernetesKopsMirrorBase, kops.Version)+suffix) | ||
// GitHub artifact names are quite different, because the suffix path is collapsed. | ||
githubSuffix := strings.ReplaceAll(suffix, "/", "-") | ||
githubSuffix = strings.ReplaceAll(githubSuffix, "linux-amd64-nodeup", "nodeup-linux-amd64") | ||
githubSuffix = strings.ReplaceAll(githubSuffix, "linux-arm64-nodeup", "nodeup-linux-arm64") | ||
mirrors = append(mirrors, fmt.Sprintf(githubKopsMirrorBase, kops.Version)+githubSuffix) | ||
} | ||
// Finally append the original URL to the list of mirrored URLs. | ||
// In case this is a custom URL, there won't be any mirrors before it, | ||
// otherwise it will be the last mirror URL, because it's now a legacy location. | ||
mirrors = append(mirrors, u) | ||
|
||
return mirrors | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters