![[SOLVED] Helm Error: no available release name found](https://scriptcrunch.com/wp-content/uploads/2019/06/root.png)
[Solved] Helm – Error: no available release name found
- Last Updated on: June 16, 2019
- By: scriptcrunch
When I ran helm install, I got “Error: no available release name found” error. What should I do?
If you get no available release error in helm, it is likely due to the RBAC issue.
While configuring helm, you would have probably created a RBAC with a service account named tiller which binds to a clusterRoleBinding with cluster admin credentials.
Here is how the RBAC file looks like.
apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tiller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: tiller
namespace: kube-system
However, when you initialize helm, you would have missed to pass the service account with the init command.
Error: no available release name found Resolution
The resolution is pretty simple. You just need to pass the created service account with the init command..
Before you do this delete the existing tiller deployment using the following command.
kubectl delete deployment tiller-deploy -n kube-system
Make sure the tiller-deploy deployment is deleted using the following command.
kubectl get deployment tiller-deploy -n kube-system
Now, re-initialize helm with service account.
helm init --service-account=tiller
Now if you try deploying using helm, you should not be seeing “Error: no available release name found” error.
Other Interesting Blogs

CKA Exam Study Guide: Certified Kubernetes Administrator
Passing the cloud-native Certified Kubernetes Administrator (CKA) exam is not a cakewalk. To pass the CKA exam, you should have enough hands-on

Linux Foundation Coupon for 2023
Hi Techies, I wanted to let you know about a pretty sweet deal with the Linux Foundation Coupon that is running now.

[35% OFF] Linux Foundation LFCA, LFCS & LFCT Exam Voucher Codes
Linux Foundation has announced up to a $284 discount on its Linux certification programs Linux Foundation Certified IT Associate (LFCA) and Linux
2 thoughts on “[Solved] Helm – Error: no available release name found”
Thanks! This resolved my issue! Much appreciated
You are Welcome David