Last active
April 17, 2020 21:14
-
-
Save Staggerlee011/9e0b631a1938bc08b2247edd032b0afa to your computer and use it in GitHub Desktop.
ubunutu-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 | |
sudo apt install linuxbrew-wrapper | |
sudo apt install curl | |
## maunual download of chrome | |
## isntall vscode from snap | |
sudo apt install python3.8 | |
sudo apt install python3-pip | |
## install k8s tools | |
### kubectl | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl | |
chmod +x ./kubectl | |
sudo mv ./kubectl /usr/local/bin/kubectl | |
### eksctl | |
pip3 install awscli --upgrade --user | |
brew install stern | |
brew install kube-ps1 | |
brew install kubectx | |
brew install derailed/popeye/popeye | |
brew install derailed/k9s/k9s | |
# 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 | |
## docker | |
## docker-compose | |
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose | |
sudo | |
chmod +x /usr/local/bin/docker-compose | |
## chef install | |
download latest verision from | |
https://downloads.chef.io/chef-workstation#ubuntu | |
## install manally |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment