Skip to content

Instantly share code, notes, and snippets.

@kairen
Created December 25, 2022 19:39
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 kairen/0416c8aab76c56efc698fbc412f48de1 to your computer and use it in GitHub Desktop.
Save kairen/0416c8aab76c56efc698fbc412f48de1 to your computer and use it in GitHub Desktop.
(
set -x; cd "$(mktemp -d)" &&
OS="$(uname | tr '[:upper:]' '[:lower:]')" &&
ARCH="$(uname -m | sed -e 's/x86_64/amd64/' -e 's/\(arm\)\(64\)\?.*/\1\2/' -e 's/aarch64$/arm64/')" &&
KREW="krew-${OS}_${ARCH}" &&
curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/${KREW}.tar.gz" &&
tar zxvf "${KREW}.tar.gz" &&
./"${KREW}" install krew
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment