Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

☁️ 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

```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)