Skip to content

Instantly share code, notes, and snippets.

@mgoodness
Last active May 28, 2019 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mgoodness/9e1c90d7b8fe14f04422bd0f44da9aed to your computer and use it in GitHub Desktop.
Save mgoodness/9e1c90d7b8fe14f04422bd0f44da9aed to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
while getopts ":u:" opt; do
case "$opt" in
u)
username="${OPTARG}"
;;
\?)
echo "Invalid option: -${OPTARG}" >&2
return 1
;;
:)
echo "Option -${OPTARG} requires an argument." >&2
return 1
;;
esac
done
shift "$((OPTIND-1))"
if [[ -z $1 ]]; then
echo "Node name required." >&2
return 1
else
ip="$(kubectl get nodes $1 -o go-template='{{range .status.addresses}}{{if eq .type "InternalIP"}}{{print .address}}{{end}}{{end}}')"
ssh "${username}@$ip"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment