jq is useful to slice, filter, map and transform structured json data.
brew install jq
We need to run multiple versions of kubectl for compatibility with various kubernetes clusters.
It's a bit easier to get and use multiple versions of kubectl using Homebrew than it is using Macports.
With brew, it's simple to:
| #!/bin/sh | |
| ## setup _________________________________ | |
| TMUX_VER=2.9a | |
| LIBEVENT_VER=2.1.11-stable | |
| TEMP_COMPILE=~/tmux-temp-compile | |
| COMMON_INSTALL_PREFIX=/opt | |
| SYMLINK=/usr/local/bin/tmux |