Skip to content

miooochi/cloud-computing-essentials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

☁️ Cloud Computing Essentials

Essential bootstrap scripts and templates for cloud-computing usage cases

License lines Version Kubernetes lastcommit

Navigation

coming soon

Bootstrap Scripts

Neovim Cloud

NOTES: ONLY supported in Ubuntu 18.04 or higher by now

curl -fsSL https://get.hikariai.net/api/neovim | sudo bash -

Common Tools

Docker
$ sudo wget -qO- https://get.docker.com/ | sh
$ sudo usermod -aG docker $USER
$ sudo systemctl enable docker

Kubectl
$ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
$ sudo chmod u+x kubectl && sudo mv kubectl /usr/bin

Helm
$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
$ sudo chmod u+x get_helm.sh
$ ./get_helm.sh

License

MIT (C) Kevin Yu