How to find the release of the deployed pod in Kubernetes?

12/11/2019

I have deployed the pod in the Kubernetes using the helm install command. Now I need to delete the pod but I have not noted down the release name of the pod.

Is there any way to find out the release name of the deployed pod?

-- Shrinidhi Devaraj
docker
kubernetes
kubernetes-helm
kubernetes-pod

1 Answer

12/11/2019

Have you tried running "helm list" to see all the release names? If you don't have too many releases or pods you might be able to find your release name by comparing with the chart name.

-- Rohit Durvasula
Source: StackOverflow