Created
November 27, 2020 15:49
-
-
Save mfridman/b6ca7994e33ddbf68dab5d1c53c13566 to your computer and use it in GitHub Desktop.
Use by jpetazzo/shpod
This file contains 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/sh | |
# For more information about shpod, check it out on GitHub: | |
# https://github.com/jpetazzo/shpod | |
if [ -f shpod.yaml ]; then | |
YAML=shpod.yaml | |
else | |
YAML=https://raw.githubusercontent.com/jpetazzo/shpod/main/shpod.yaml | |
fi | |
if [ "$(kubectl get pod --namespace=shpod shpod --ignore-not-found -o jsonpath={.status.phase})" = "Running" ]; then | |
echo "Shpod is already running. Starting a new shell with 'kubectl exec'." | |
echo "(Note: if the main invocation of shpod exits, all others will be terminated.)" | |
kubectl exec -ti --namespace=shpod shpod -- bash -l | |
if [ $? = 137 ]; then | |
echo "Shpod was terminated by SIGKILL. This will happen when the main invocation" | |
echo "of shpod exits (all processes started by 'kubectl exec' are then terminated)." | |
fi | |
exit 0 | |
fi | |
echo "Applying YAML: $YAML..." | |
kubectl apply -f $YAML | |
echo "Waiting for pod to be ready..." | |
kubectl wait --namespace=shpod --for condition=Ready pod/shpod | |
echo "Attaching to the pod..." | |
kubectl attach --namespace=shpod -ti shpod </dev/tty | |
echo "Deleting pod..." | |
echo " | |
Note: it's OK to press Ctrl-C if this takes too long and you're impatient. | |
Clean up will continue in the background. However, if you want to restart | |
shpod, you might have to wait a bit (about 30 seconds). | |
" | |
kubectl delete -f $YAML --now | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment