Created
August 4, 2022 01:48
-
-
Save si3mshady/64d5075e65e68012416a967238128c5d to your computer and use it in GitHub Desktop.
Generate k8s deployment manifest files after using helm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for dep in $(kubectl get deployment | awk '{print $1}'); do kubectl get deployment $dep -o yaml > $dep.yml; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment