Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ubuntu] Pin Helm 3.14.4 due to unusual release of 3.15.0 #9867

Merged
merged 1 commit into from
May 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion images/ubuntu/scripts/build/install-kubernetes-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ sudo apt-get update -y && sudo apt-get install -y kubectl
rm -f /etc/apt/sources.list.d/kubernetes.list

# Install Helm
curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
# Temporary pin version v3.14.4 due to strange release of v3.15.0
helm_version="v3.14.4"
download_with_retry "https://get.helm.sh/helm-$helm_version-linux-amd64.tar.gz" /tmp/helm.tar.gz
mkdir -p /tmp/helm
tar xzf /tmp/helm.tar.gz -C /tmp/helm
cp /tmp/helm/linux-amd64/helm /usr/local/bin/helm
chmod +x /usr/local/bin/helm

# Download minikube
curl -fsSL -O https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
Expand Down
Loading