daviftorres opened a new issue, #11036:
URL: https://github.com/apache/cloudstack/issues/11036

   ### 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...
   
![Image](https://github.com/user-attachments/assets/42334a54-4e1e-4c17-86e1-20553843d2da)
   
   ...return 404:
   
![Image](https://github.com/user-attachments/assets/a0794bcb-5b07-47ae-a4f0-18c1b994af8c)
   
   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
   
   1. Deploy a new Kubernetes Cluster,
   2. Click on the Cluster and select the tab Access,
   3. Copy the URL for download,
   4. 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
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to