commit d04a332007f7818d210a5baaf82c077251e716dd Author: Radar231 Date: Thu Oct 21 10:25:33 2021 -0400 initial checkin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f6f552 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +test*.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..6b40083 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# metallb load-balancer config repo + +## Introduction + +This is a copy of my metallb load-balancer yaml configuration file. + +## Links + +* https://metallb.universe.tf/installation/ +* https://metallb.universe.tf/configuration/ + diff --git a/metallb_configmap.yml b/metallb_configmap.yml new file mode 100644 index 0000000..b8a6e6b --- /dev/null +++ b/metallb_configmap.yml @@ -0,0 +1,16 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + namespace: metallb-system + name: config +data: + config: | + address-pools: + - name: default + protocol: layer2 + addresses: + - 192.168.7.80-192.168.7.89 + auto-assign: false + +# EOF