Shrinidhi Devaraj
Shrinidhi Devaraj

Reputation: 35

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

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?

Upvotes: 2

Views: 11989

Answers (2)

ranaraya
ranaraya

Reputation: 1

For the "helm list" command to work correctly you should add the namespace:

helm list -n <namespace>

Upvotes: 0

Rohit Durvasula
Rohit Durvasula

Reputation: 46

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.

Upvotes: 1

Related Questions