Install Homebrew
Homebrew is a free and open-source package management system for Mac OS X.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Change default shell to bash
chsh -s /bin/bash
Install XCode
brew install xcodegen
xcode-select --install
Install Python
brew install python
Install Firefox ESR
Firefox for your enterprise.
https://www.mozilla.org/pt-BR/firefox/enterprise/
https://formulae.brew.sh/cask/firefox
brew install --cask homebrew/cask-versions/firefox-esr
Install Google Chrome
The browser built by Google.
https://www.google.com/intl/pt-BR/chrome/
https://chromeenterprise.google/browser/
https://formulae.brew.sh/cask/google-chrome
brew install --cask google-chrome
Install VSCodium
VSCodium is a community-driven, freely-licensed binary distribution of Microsoft’s editor VS Code.
https://formulae.brew.sh/cask/vscodium
brew install --cask vscodium
Install Visual Studio Code
Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop.
https://code.visualstudio.com/
https://formulae.brew.sh/cask/visual-studio-code
brew install --cask visual-studio-code
Install Kubectl
The Kubernetes command-line tool, kubectl, allows you to run commands against Kubernetes clusters.
https://kubernetes.io/docs/tasks/tools/
https://kubernetes.io/docs/tasks/tools/install-kubectl-macos/#install-with-homebrew-on-macos
brew install kubectl
Install Krew and Neat
Krew
Krew is the plugin manager for kubectl command-line tool.
https://krew.sigs.k8s.io/docs/user-guide/setup/install/
(
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
)
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
Neat
Clean up Kubernetes yaml and json output to make it readable.
https://github.com/itaysk/kubectl-neat
https://github.com/itaysk/kubectl-neat#installation
kubectl krew install neat
Install Helm
Helm is the best way to find, share, and use software built for Kubernetes.
https://helm.sh/docs/intro/install/#from-homebrew-macos
brew install helm
Install Lens
Lens is the most powerful Kubernetes IDE on the market.
brew install lens
Install Kubenav
kubenav is the navigator for your Kubernetes clusters right in your pocket. kubenav is a mobile, desktop and web app to manage Kubernetes clusters and to get an overview of the status of your resources.
https://docs.kubenav.io/desktop/getting-started/
brew install kubenav
Install Terraform
Build, change, and destroy infrastructure with Terraform.
https://learn.hashicorp.com/terraform
https://learn.hashicorp.com/tutorials/terraform/install-cli
brew tap hashicorp/tap
brew install hashicorp/tap/terraform
Install Terraform-Docs
Generate Terraform modules documentation in various formats.
https://terraform-docs.io/user-guide/installation/#homebrew
brew tap terraform-docs/tap
brew install terraform-docs/tap/terraform-docs
Install AWScli
Official Amazon AWS command-line interface.
https://formulae.brew.sh/formula/awscli
brew install awscli
Install Azure-cli
Official Azure command-line interface.
https://docs.microsoft.com/cli/azure/overview
https://formulae.brew.sh/formula/azure-cli
brew install azure-cli
Install Google Cloud SDK
Official Google Cloud command-line interface.
https://formulae.brew.sh/cask/google-cloud-sdk
brew install --cask google-cloud-sdk
Install Multipass
Ubuntu VMs on demand for any workstation.
https://multipass.run/docs/installing-on-macos
https://formulae.brew.sh/cask/multipass
brew install --cask multipass
Install Podman
Manage pods, containers, and container images.
https://podman.io/getting-started/installation
brew install podman
podman machine init
podman machine start
podman info
Install Rancher Desktop
Kubernetes and Container Management on the Desktop.
https://iongion.github.io/podman-desktop-companion/
for i in $(curl -s https://api.github.com/repos/rancher-sandbox/rancher-desktop/releases/latest | grep 'browser_' | cut -d\" -f4 | grep "x86_64.dmg" | head -1); do wget -c $i -O "rancher_desktop.dmg"; done
cd /tmp
hdiutil attach rancher_desktop.dmg -mountpoint /Volumes/Rancher
cp -a /Volumes/Rancher/Rancher*.app /Volumes/Rancher/Applications/
umount /Volumes/Rancher
echo "
#DOCKER
alias docker='podman'" | tee -a ~/.bashrc
source ~/.bashrc
Install ITerm2
Terminal emulator as alternative to Apple's Terminal app.
https://formulae.brew.sh/cask/iterm2
brew install --cask iterm2
Install Powerline-Go
Beautiful and useful low-latency prompt for your shell.
https://github.com/justjanne/powerline-go
https://formulae.brew.sh/formula/powerline-go
brew install powerline-go
echo '
#POWERLINE
function _update_ps1() {
PS1="$($GOPATH/bin/powerline-go -error $? -jobs $(jobs -p | wc -l))"
}
if [ "$TERM" != "linux" ] && [ -f "$GOPATH/bin/powerline-go" ]; then
PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
fi' | tee -a ~/.profile
source ~/.profile
Install the PowerlineSymbols font from:
https://github.com/powerline/powerline/tree/develop/font
In ITerm2 Preferences, go to "Text", "Font" and enable "Use a different font for non-ASCII text" and then select "PowerlineSymbols" as "Non-ASCII Font".
Top comments (0)