Description
There is a bug in helm v3.3.2 & v3.3.3 and solved on v3.3.4 https://github.com/helm/helm/issues/8771
Area for Triage:
Containers
Question, Bug, or Feature?:
Bug
Virtual environments affected
Expected behavior
Update helm to v3.3.4
Actual behavior
The command helm repo add <name> <url> fails as it is no longer idempotent. This worked fine in version v3.3.1 and earlier. It now fails in v3.3.2 and v3.3.3. This is a breaking change that has broken automation relying on helm and tools helmfile.
Hello, @zackijack!
Thank you for your report. We are installing latest available stable version at the moment. New Ubuntu images are coming with helm v3.3.3.
As a workaround I'd suggest you to update helm in a runtime using:
wget https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz
tar xvf helm-v3.3.4-linux-amd64.tar.gz
sudo mv linux-amd64/helm /usr/local/bin/
rm helm-v3.3.4-linux-amd64.tar.gz
rm -rf linux-amd64
I will notify you when helm v3.3.4 is going to be available on Ubuntu images.
Hello @zackijack,
Maybe a solution below will be more convenient for you:
GitHub actions:
- uses: azure/setup-helm@v1
with:
version: '3.3.1' # default is latest stable
id: install
Azure DevOps:
- task: HelmInstaller@1
displayName: Helm installer
inputs:
helmVersionToInstall: 3.3.1
In case of any questions, do not hesitate to contact us.
Hello, @zackijack!
Ubuntu images with Helm v3.3.4 are available to use. I'm going to close this issue, but in case of any questions feel free to contact us.