Last active
October 3, 2020 11:36
-
-
Save pranaysahith/0944135ada915285896bac252ac5f22d to your computer and use it in GitHub Desktop.
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
# install krew | |
( | |
set -x; cd "$(mktemp -d)" && | |
curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew.tar.gz" && | |
tar zxvf krew.tar.gz && | |
KREW=./krew-"$(uname | tr '[:upper:]' '[:lower:]')_amd64" && | |
"$KREW" install krew | |
) | |
vi ~/.zshrc | |
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" | |
k krew install ctx | |
k krew install ns | |
k krew install konfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment