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.
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.