2020-05-27 21:52:40 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# After a new version of Kubernetes has been released,
|
2023-12-12 20:47:27 +08:00
|
|
|
# run this script to update roles/kubespray-defaults/defaults/main/download.yml
|
2020-05-27 21:52:40 +08:00
|
|
|
# with new hashes.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import requests
|
|
|
|
from ruamel.yaml import YAML
|
|
|
|
|
2024-01-23 23:41:20 +08:00
|
|
|
CHECKSUMS_YML = "../roles/kubespray-defaults/defaults/main/checksums.yml"
|
2020-05-27 21:52:40 +08:00
|
|
|
|
2024-01-23 23:41:20 +08:00
|
|
|
def open_checksums_yaml():
|
2020-05-27 21:52:40 +08:00
|
|
|
yaml = YAML()
|
|
|
|
yaml.explicit_start = True
|
|
|
|
yaml.preserve_quotes = True
|
|
|
|
yaml.width = 4096
|
|
|
|
|
2024-01-23 23:41:20 +08:00
|
|
|
with open(CHECKSUMS_YML, "r") as checksums_yml:
|
|
|
|
data = yaml.load(checksums_yml)
|
2020-05-27 21:52:40 +08:00
|
|
|
|
|
|
|
return data, yaml
|
|
|
|
|
|
|
|
|
|
|
|
def download_hash(versions):
|
2022-02-04 16:14:00 +08:00
|
|
|
architectures = ["arm", "arm64", "amd64", "ppc64le"]
|
2020-05-27 21:52:40 +08:00
|
|
|
downloads = ["kubelet", "kubectl", "kubeadm"]
|
|
|
|
|
2024-01-23 23:41:20 +08:00
|
|
|
data, yaml = open_checksums_yaml()
|
2020-05-27 21:52:40 +08:00
|
|
|
|
|
|
|
for download in downloads:
|
|
|
|
checksum_name = f"{download}_checksums"
|
|
|
|
for arch in architectures:
|
|
|
|
for version in versions:
|
|
|
|
if not version.startswith("v"):
|
|
|
|
version = f"v{version}"
|
2024-01-23 23:41:20 +08:00
|
|
|
url = f"https://dl.k8s.io/release/{version}/bin/linux/{arch}/{download}.sha256"
|
|
|
|
hash_file = requests.get(url, allow_redirects=True)
|
|
|
|
if hash_file.status_code == 404:
|
|
|
|
print(f"Unable to find hash file for release {version} (arch: {arch})")
|
|
|
|
continue
|
|
|
|
if hash_file.status_code != 200:
|
|
|
|
raise Exception(f"Received a non-200 HTTP response code: {hash_file.status_code} (arch: {arch}, version: {version})")
|
|
|
|
sha256sum = hash_file.content.decode().strip()
|
|
|
|
if len(sha256sum) != 64:
|
|
|
|
raise Exception(f"Checksum has an unexpected length: {len(sha256sum)} (arch: {arch}, version: {version})")
|
|
|
|
if checksum_name not in data:
|
|
|
|
data[checksum_name] = {}
|
|
|
|
if arch not in data[checksum_name]:
|
|
|
|
data[checksum_name][arch] = {}
|
2020-05-27 21:52:40 +08:00
|
|
|
data[checksum_name][arch][version] = sha256sum
|
|
|
|
|
2024-01-23 23:41:20 +08:00
|
|
|
with open(CHECKSUMS_YML, "w") as checksums_yml:
|
|
|
|
yaml.dump(data, checksums_yml)
|
|
|
|
print(f"\n\nUpdated {CHECKSUMS_YML}\n")
|
2020-05-27 21:52:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
def usage():
|
|
|
|
print(f"USAGE:\n {sys.argv[0]} [k8s_version1] [[k8s_version2]....[k8s_versionN]]")
|
|
|
|
|
|
|
|
|
|
|
|
def main(argv=None):
|
|
|
|
if not argv:
|
|
|
|
argv = sys.argv[1:]
|
|
|
|
if not argv:
|
|
|
|
usage()
|
2021-08-19 21:51:24 +08:00
|
|
|
return 1
|
2020-05-27 21:52:40 +08:00
|
|
|
download_hash(argv)
|
2021-08-19 21:51:24 +08:00
|
|
|
return 0
|
2020-05-27 21:52:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main())
|