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.
I manage to resolve the issue using
helm delete <chart name>
I faced the same issue. I was able to solve it by running this command:
helm rollback <chart name>
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>