Created
November 12, 2024 18:53
-
-
Save bryanpaget/aed9d3be9aca62dc0ddc176f5b3e5d9f to your computer and use it in GitHub Desktop.
Install Tools for Work
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
| #!/usr/bin/env bash | |
| # Install Homebrew | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| test -d ~/.linuxbrew && eval "$(~/.linuxbrew/bin/brew shellenv)" | |
| test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
| echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> ~/.bashrc | |
| # Install tools | |
| sudo apt install build-essential procps curl file git unzip | |
| brew install terraform kustomize helm kubectx kubectl yq kind k9s jq | |
| sudo snap install vault |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment