Skip to content

Commit

Permalink
feat(tools): add kubens and kubectx
Browse files Browse the repository at this point in the history
  • Loading branch information
Ant0wan committed May 10, 2023
1 parent eb47894 commit d99960d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tools/install-kubectx.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -o errexit
set -o errtrace
set -o pipefail

wget https://github.com/ahmetb/kubectx/releases/latest/download/kubectx -O /usr/local/bin/kubectx
chmod +x /usr/local/bin/kubectx
7 changes: 7 additions & 0 deletions tools/install-kubens.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -o errexit
set -o errtrace
set -o pipefail

wget https://github.com/ahmetb/kubectx/releases/latest/download/kubens -O /usr/local/bin/kubens
chmod +x /usr/local/bin/kubens

0 comments on commit d99960d

Please sign in to comment.