mirror of https://github.com/kubernetes/kops.git
132 lines
5.0 KiB
Go
132 lines
5.0 KiB
Go
/*
|
|
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 wellknownassets
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/kops/pkg/apis/kops/model"
|
|
"k8s.io/kops/pkg/assets"
|
|
"k8s.io/kops/util/pkg/architectures"
|
|
"k8s.io/kops/util/pkg/hashing"
|
|
)
|
|
|
|
// TODO: we really need to sort this out:
|
|
// https://github.com/kubernetes/kops/issues/724
|
|
// https://github.com/kubernetes/kops/issues/626
|
|
// https://github.com/kubernetes/kubernetes/issues/30338
|
|
|
|
const (
|
|
defaultCNIAssetAmd64K8s_22 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v0.9.1/cni-plugins-linux-amd64-v0.9.1.tgz"
|
|
defaultCNIAssetArm64K8s_22 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v0.9.1/cni-plugins-linux-arm64-v0.9.1.tgz"
|
|
|
|
defaultCNIAssetAmd64K8s_27 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.2.0/cni-plugins-linux-amd64-v1.2.0.tgz"
|
|
defaultCNIAssetArm64K8s_27 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.2.0/cni-plugins-linux-arm64-v1.2.0.tgz"
|
|
|
|
defaultCNIAssetAmd64K8s_29 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.3.0/cni-plugins-linux-amd64-v1.3.0.tgz"
|
|
defaultCNIAssetArm64K8s_29 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.3.0/cni-plugins-linux-arm64-v1.3.0.tgz"
|
|
|
|
defaultCNIAssetAmd64K8s_30 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.4.1/cni-plugins-linux-amd64-v1.4.1.tgz"
|
|
defaultCNIAssetArm64K8s_30 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.4.1/cni-plugins-linux-arm64-v1.4.1.tgz"
|
|
|
|
defaultCNIAssetAmd64K8s_31 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.5.1/cni-plugins-linux-amd64-v1.5.1.tgz"
|
|
defaultCNIAssetArm64K8s_31 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.5.1/cni-plugins-linux-arm64-v1.5.1.tgz"
|
|
|
|
defaultCNIAssetAmd64K8s_32 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.6.1/cni-plugins-linux-amd64-v1.6.1.tgz"
|
|
defaultCNIAssetArm64K8s_32 = "https://storage.googleapis.com/k8s-artifacts-cni/release/v1.6.1/cni-plugins-linux-arm64-v1.6.1.tgz"
|
|
|
|
// Environment variable for overriding CNI url
|
|
ENV_VAR_CNI_ASSET_URL = "CNI_VERSION_URL"
|
|
ENV_VAR_CNI_ASSET_HASH = "CNI_ASSET_HASH_STRING"
|
|
)
|
|
|
|
func FindCNIAssets(ig model.InstanceGroup, assetBuilder *assets.AssetBuilder, arch architectures.Architecture) (*assets.FileAsset, error) {
|
|
// Override CNI packages from env vars
|
|
cniAssetURL := os.Getenv(ENV_VAR_CNI_ASSET_URL)
|
|
cniAssetHash := os.Getenv(ENV_VAR_CNI_ASSET_HASH)
|
|
|
|
if cniAssetURL != "" && cniAssetHash != "" {
|
|
klog.V(2).Infof("Using CNI asset URL %q, as set in %s", cniAssetURL, ENV_VAR_CNI_ASSET_URL)
|
|
klog.V(2).Infof("Using CNI asset hash %q, as set in %s", cniAssetHash, ENV_VAR_CNI_ASSET_HASH)
|
|
|
|
u, err := url.Parse(cniAssetURL)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to parse CNI plugin binaries asset URL %q: %v", cniAssetURL, err)
|
|
}
|
|
|
|
h, err := hashing.FromString(cniAssetHash)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to parse CNI plugin binaries asset hash %q: %v", cniAssetHash, err)
|
|
}
|
|
|
|
asset, err := assetBuilder.RemapFile(u, h)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to remap CNI plugin binaries asset: %v", err)
|
|
}
|
|
|
|
return asset, nil
|
|
}
|
|
|
|
switch arch {
|
|
case architectures.ArchitectureAmd64:
|
|
switch {
|
|
case ig.KubernetesVersion().IsGTE("1.32"):
|
|
cniAssetURL = defaultCNIAssetAmd64K8s_32
|
|
case ig.KubernetesVersion().IsGTE("1.31"):
|
|
cniAssetURL = defaultCNIAssetAmd64K8s_31
|
|
case ig.KubernetesVersion().IsGTE("1.30"):
|
|
cniAssetURL = defaultCNIAssetAmd64K8s_30
|
|
case ig.KubernetesVersion().IsGTE("1.29"):
|
|
cniAssetURL = defaultCNIAssetAmd64K8s_29
|
|
}
|
|
case architectures.ArchitectureArm64:
|
|
switch {
|
|
case ig.KubernetesVersion().IsGTE("1.32"):
|
|
cniAssetURL = defaultCNIAssetArm64K8s_32
|
|
case ig.KubernetesVersion().IsGTE("1.31"):
|
|
cniAssetURL = defaultCNIAssetArm64K8s_31
|
|
case ig.KubernetesVersion().IsGTE("1.30"):
|
|
cniAssetURL = defaultCNIAssetArm64K8s_30
|
|
case ig.KubernetesVersion().IsGTE("1.29"):
|
|
cniAssetURL = defaultCNIAssetArm64K8s_29
|
|
}
|
|
default:
|
|
return nil, fmt.Errorf("unknown arch for CNI plugin binaries asset: %s", arch)
|
|
}
|
|
|
|
if cniAssetURL == "" {
|
|
return nil, fmt.Errorf("unknown CNI plugin binaries asset: %s", arch)
|
|
} else {
|
|
klog.V(2).Infof("Adding CNI plugin binaries asset: %s", cniAssetURL)
|
|
}
|
|
|
|
u, err := url.Parse(cniAssetURL)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to parse CNI plugin binaries asset URL %q: %v", cniAssetURL, err)
|
|
}
|
|
|
|
asset, err := assetBuilder.RemapFile(u, nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to remap CNI plugin binaries asset: %v", err)
|
|
}
|
|
|
|
return asset, nil
|
|
}
|