Created
September 28, 2021 16:09
-
-
Save jhoelzel/2ed10b1d893856fec3e0f0a5d1524fe4 to your computer and use it in GitHub Desktop.
Deploy MetalLB at home
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable MetalLB Load Balancer. | |
microk8s enable metallb | |
when asked for an IP range give a NEW ONE for instance 10.37.1.0/24 | |
## route local machine | |
route -P add 10.1.2.0/24 MASK 255.255.255.0 10.0.37.1 | |
## in order to do that with OpenWRT just add a static route! | |
Host-IP or Network: 10.1.1.1/24 MASK 255.255.255.0 Gateway:10.37.0.6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment