Skip to content

Instantly share code, notes, and snippets.

@mfridman
Created November 27, 2020 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mfridman/b6ca7994e33ddbf68dab5d1c53c13566 to your computer and use it in GitHub Desktop.
Save mfridman/b6ca7994e33ddbf68dab5d1c53c13566 to your computer and use it in GitHub Desktop.
Use by jpetazzo/shpod
#!/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