This repo allows you tu setup and run a full kubernetes cluster on vagrant. By default, it consists of:
- One master node
- Two slave nodes
- Flannel networking
- Not storage (for now)
As of now, this installs kubernetes v1.17.2
To run this, you need the following requirements:
- vagrant
- virtualbox
- ansible
To set up the cluster, just type the following command:
$ vagrant up
Vagrant and the ansible playbook will automatically create the kubeconfig
file on the current directory. To use kubectl you can either run it from your session or from the master node.
To communicate with the cluster from the current terminal, you need to export the KUBECONFIG file path:
$ export KUBECONFIG=$(pwd)/kubeconfig
Then, you'll be able to run kubectl normally:
$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
va-k8s-master Ready master 7m20s v1.17.0
va-k8s-n1 Ready <none> 5m49s v1.17.0
va-k8s-n2 Ready <none> 4m32s v1.17.0
You can also login to the master node and run kubectl form there:
$ vagrant ssh va-k8s-master
vagrant@va-k8s-master:~$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
va-k8s-master Ready master 7m20s v1.17.0
va-k8s-n1 Ready <none> 5m49s v1.17.0
va-k8s-n2 Ready <none> 4m32s v1.17.0
Likewise, to destroy the cluster, run:
$ vagrant destroy -f