Hi, is there a way to find the deployment/pod using a particular configmap using . . .

Yuvraj:
Hi, is there a way to find the deployment/pod using a particular configmap using kubectl or other ways in the cluster? Thanks

JohnC:
you could do something like:
kubectl describe pod <pod-name> |grep ConfigMap -A3

which will return the 3 lines following the ConfigMap entry in the pod describe

Yuvraj:
I did a -B30 to take me to the deployment name :smiley: