Description
problem
Kubernetes in CloudStack is a pleasant experience. It pretty much hold the hand of the user and walkthrough all the basic steps of the way.
Unfortunately, the links to download kubectl
binary...
Apparently, Google changed the CDN address.
From:
https://storage.googleapis.com/kubernetes-release/release/
To:
https://dl.k8s.io/release/
versions
CKS 1.33.1
CloudStack Management 4.20.0.0
Hypervisor KVM on Ubuntu 24.04 LTS
The steps to reproduce the bug
- Deploy a new Kubernetes Cluster,
- Click on the Cluster and select the tab Access,
- Copy the URL for download,
- Try to download from URL.
What to do about it?
Semi-automated download:
wget "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
Manual download:
wget https://dl.k8s.io/release/v1.33.1/bin/linux/amd64/kubectl
Using Snap:
snap install kubectl --classic