Created
July 1, 2022 08:49
-
-
Save MrHassanMurtaza/a1c0b4af2c9a8922acd191a6735e0566 to your computer and use it in GitHub Desktop.
Check if resources got created in kubernetes
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
#!/bin/bash | |
while : ; do | |
kubectl get [your thing] && break | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or one line: