Use laptop as a worker node with separate master node

5/6/2019

my problem is the same: i have an extra laptop and want use it like a kubernetes worker node, instead having the master node and worker node in the same machine(like minikube). the machine with the master node and the laptop with worker node are on the same LAN. but i have no idea about the technology which i have to use (openshift or something else) thanks for all

-- colo
cluster-computing
kubernetes
openshift

2 Answers

5/6/2019

The easiest for this purpose will be kubeadm: https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm/. You basically doing kubeadm init on master, and kubeadm join on every worker.

-- Max Lobur
Source: StackOverflow

5/7/2019

If you opt for creating Highly Available Clusters on bare metal, just follow official kubernetes.io's tutorial: Creating Highly Available Clusters with kubeadm, take option: with stacked control plane nodes.

-- Nepomucen
Source: StackOverflow