Skip to content

Instantly share code, notes, and snippets.

@Staggerlee011
Created April 2, 2020 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Staggerlee011/2468f729903081cfe51e8357da849536 to your computer and use it in GitHub Desktop.
Save Staggerlee011/2468f729903081cfe51e8357da849536 to your computer and use it in GitHub Desktop.
ubuntu-install
# 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