Is it possible to fetch helm list from cluster which is deployed by other user

3/22/2021

If another user was deployed a helm chart. If I connect to that cluster & used helm list It's not showing the releases. How can I fetch list of releases in helm which is deployed by another user for same cluster.

If possible how can we do that.

-- ChinnapaReddy
kubernetes
kubernetes-helm

1 Answer

3/22/2021

helm ls should return all the releases installed in your cluster. Maybe the issue is that another user has installed his chart on a different namespace? Try running helm ls -A and see if it returns.

-- Shai Katz
Source: StackOverflow