Release pipeline - Helm Upgrade failure

11/7/2020

I am using azure Devops for my CICD. I get the below error in release pipeline - Helm upgrade stage. I am not getting any clues as to what causes this. I am not able to go past this stage from the past one day. I do not know what is the "another operation (install/upgrade/rollback) is in progress"

Any help to resolve this would greatly be appreciated, thanks.

Azure devops release pipeline

-- user264953
azure-aks
azure-devops
kubernetes
kubernetes-helm

3 Answers

1/22/2021

I manage to resolve the issue using

helm delete <chart name>
-- Blago
Source: StackOverflow

4/16/2021

I faced the same issue. I was able to solve it by running this command:

helm rollback <chart name>
-- Prince Khanna
Source: StackOverflow

8/12/2021

I had the same issue while releasing using the ADO pipeline. Finally, I have figured it out using the below steps. I was not even able to list the release under this usual command.

helm list -n <name-space>

this was responding empty. So it's funny behavior from the helm.

kubectl config get-contexts

make sure your context is set for the correct Kubernetes cluster. Then next step is

helm history <release> -n <name-space> --kube-context <kube-context-name>

try applying the rollback to above command.

helm rollback <release> <revision> -n <name-space> --kube-context <kube-context-nam>

-- Vishal Dhanani
Source: StackOverflow