Easiest way to deploy a Kubernetes Cluster to learn Kubernetes
- Create a Ubuntu 64 Server/VM from your favourite cloud provider
- Then apply:
wget -qO- https://git.io/veKlu | sudo sh
- Now you've a standalone Kubernetes cluster running inside your server
Now we need to configure your local machine to access the Kubernetes network.
- Let's create a SOCKS proxy server with this command:
ssh -D 8082 root@your-server-ip
- Then configure your browser to use the above SOCKS proxy with
port=8082
andhost=localhost
- Now, you can access IPs assigned by kubernetes directly from your browser
- Starting Learning Kuberneted from here: https://meteorhacks.com/learn-kubernetes-the-future-of-the-cloud.html
- Then you can choose any tutorial you like and start playing with kubernetes