-
Notifications
You must be signed in to change notification settings - Fork 608
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add feature to install kubernetes worker nodes #1183
base: master
Are you sure you want to change the base?
Conversation
Based on question in: |
Choosing the apiserver address and the flannel interface, with k3s and k8s: k3s: k8s: When having nodes with multiple interfaces, and Should deploy a DNS server, to be able to configure addresses (based on the MAC) |
f82f520
to
a1bf0cc
Compare
If your instances are connected through a proper network, then it is possible to join additional workers to the control plane. Beyond the URL of the apiserver (running on port 6443), you will also need the secret "token" emitted by the initial installation. Signed-off-by: Anders F Björklund <[email protected]>
Signed-off-by: Anders F Björklund <[email protected]>
Signed-off-by: Anders F Björklund <[email protected]>
Signed-off-by: Anders F Björklund <[email protected]>
If your instances are connected through a proper network,
then it is possible to join additional workers to the control plane.
Beyond the URL of the apiserver (running on port 6443),
you will also need the secret "token" emitted by the initial installation.
The two (or more) Kubernetes nodes will need to be able reach eachother, though.
The default network ("user") will not allow this, but it is possible to use "socket":
Probably still need the original NAT network to pull images, so needs eth0/eth1 ?
This is the setup done in minikube, originally by using the VirtualBox networks...