Added ppc64le support (#8505)

* Added ppc64le support

* Fixed linting errors
This commit is contained in:
mgiessing
2022-02-04 09:14:00 +01:00
committed by GitHub
parent 790448f48b
commit 6a4fd33a03
3 changed files with 119 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ def open_main_yaml():
def download_hash(versions):
architectures = ["arm", "arm64", "amd64"]
architectures = ["arm", "arm64", "amd64", "ppc64le"]
downloads = ["kubelet", "kubectl", "kubeadm"]
data, yaml = open_main_yaml()

View File

@@ -2,7 +2,7 @@
set -eo pipefail
VERSIONS="$@"
ARCHITECTURES="arm arm64 amd64"
ARCHITECTURES="arm arm64 amd64 ppc64le"
DOWNLOADS="kubelet kubectl kubeadm"
DOWNLOAD_DIR="tmp/kubeadm_hasher"