Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/piyoki/cloud-computing-essentials
☁️ Essential bootstrap scripts for cloud-computing usage
https://github.com/piyoki/cloud-computing-essentials
bootstarp cicd cloud-computing cloud-functions kubernetes scripts serverless
Last synced: about 1 month ago
JSON representation
☁️ Essential bootstrap scripts for cloud-computing usage
- Host: GitHub
- URL: https://github.com/piyoki/cloud-computing-essentials
- Owner: piyoki
- License: mit
- Created: 2021-04-29T02:12:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-06T09:47:32.000Z (12 months ago)
- Last Synced: 2024-10-14T07:36:26.329Z (2 months ago)
- Topics: bootstarp, cicd, cloud-computing, cloud-functions, kubernetes, scripts, serverless
- Language: Shell
- Homepage:
- Size: 963 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
☁️ Cloud Computing Essentials
Essential bootstrap scripts and templates for cloud-computing usage cases## Navigation
coming soon
## Bootstrap Scripts
Neovim Cloud
NOTES: ONLY supported in Ubuntu 18.04 or higher by now
```bash
curl -fsSL https://get.hikariai.net/api/neovim | sudo bash -
```## Common Tools
Docker
```bash
$ sudo wget -qO- https://get.docker.com/ | sh
$ sudo usermod -aG docker $USER
$ sudo systemctl enable docker
```Kubectl
```bash
$ 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
```bash
$ 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](https://github.com/yqlbu/cloud-computing-essentials/blob/master/LICENSE)