Created
April 2, 2020 19:50
-
-
Save Staggerlee011/2468f729903081cfe51e8357da849536 to your computer and use it in GitHub Desktop.
ubuntu-install
This file contains 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 brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
## install k8s tools | |
brew install stern | |
brew install kube-ps1 | |
brew install kubectx | |
brew install derailed/popeye/popeye | |
brew install derailed/k9s/k9s | |
curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp | |
sudo mv /tmp/eksctl /usr/local/bin | |
# aws cli | |
Aws cli | |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
unzip awscliv2.zip | |
sudo ./aws/install | |
# Ansible | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt-add-repository ppa:ansible/ansible | |
sudo apt-get update | |
sudo apt-get install ansible -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment