Problem scenario
You do not have the YAML (.yml or .yaml) files for your Helm deployments.
How do you find the pod manifests for the yaml files when you do not have access to the Helm repos?
Solution
Run this:
helm ls -a -A
The output will show a “Name” on the left most column and a namespace in an inner column.
…