Open
Description
Hello,
I would like to contribute to improving the Kubernetes website. This is my first time submitting an issue, so please bear with me if I'm not following the standard procedures.
Improvement Suggestion:
In the install-kubeadm-and-kubelet section, there's a PowerShell command that currently specifies the Kubernetes version as v1.32
. However, executing the command with v1.32
results in the following error:
DownloadFile : Download https://dl.k8s.io/v1.32/bin/windows/amd64/kubelet.exe failed
To resolve this issue, please update the KubernetesVersion
parameter in the PrepareNode.ps1
script to use v1.32.0
instead of v1.32
. The corrected command should look like this:
curl.exe -LO https://raw.githubusercontent.com/kubernetes-sigs/sig-windows-tools/master/hostprocess/PrepareNode.ps1
.\PrepareNode.ps1 -KubernetesVersion v1.32.0
Reason:
Using v1.32.0
ensures that the correct version is downloaded, preventing the aforementioned error.
Thank you for your attention to this matter.