Build k8s cluster on hyper-v with Vagrant

Demo how to build up multi nodes k8s cluster on hyper-v with Vagrant. Will address few pain points: NAT static ip adaptor in hyper-v, needed for permanent k8s API server reset static ip in vagrant provision before installation and configuration Docker installation script Following up Docker official Ubuntu installation procedure, …

Deploy multi nodes k8s cluster using minikube on win10

Deploy multi nodes k8s cluster using minikube on win10 The minikube is single node cluster tool for test/dev purpose. The demand from community asked multi nodes cluster for long time, finally this experimental feature comes out, it seems working well so far. Let’s test bit on win10. install minikube on …

Launch multi node k8s cluster using minikube on macOS

Launch multi node k8s cluster using minikube on macOS The minikube is single node cluster tool for test/dev purpose. The demand from community asked multi nodes cluster for long time, finally this experimental feature comes out, it seems working well so far. install minikube on macOS It is easy to …

Launch Ubuntu 20.04 k8s 1.21.4 cluster using vagrant box

Launch Ubuntu 20.04 k8s 1.21.4 cluster using vagrant box dreamcloud/ubuntu20-k8s is a k8s dev ready box, here is demo to show how to launch a 3 nodes k8s cluster in few mins using vagrant. tool set Vagrant 2.2.10 Virtualbox 6.1 prepare Vagrantfile $ mkdir /mnt/c/vagrant/ub20k8s $ curl -LO https://raw.githubusercontent.com/robertluwang/dreamcloud-vagrant/master/ubuntu20-k8s/Vagrantfile assume …