Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dezren39 committed Dec 22, 2024
1 parent 87f5383 commit d2bf1df
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
1 change: 0 additions & 1 deletion infra/talos/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
*.yaml
01b.us*
!01b.us.enc
!01b.us-*.sh
Expand Down
1 change: 0 additions & 1 deletion infra/talos/01b.us-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ if [ -d 01b.us ]; then
echo "01b.us directory already exists"
exit 1
fi
echo "*.yaml" >> .gitignore
echo "01b.us*" >> .gitignore
echo "!01b.us.enc" >> .gitignore
echo "!01b.us-*.sh" >> .gitignore
Expand Down
25 changes: 25 additions & 0 deletions infra/talos/metallb-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: first-pool
namespace: metallb-system
spec:
addresses:
# reserved for static ip
# - 10.10.0.0 - 10.10.1.255

# reserved for gateway dhcp (main edge router)
# - 10.10.2.0 - 10.10.31.255

# reserved for 01b.us cluster load balancers
- 10.10.32.0-10.10.63.254

---
apiVersion: metallb.io/v1beta1
kind: L2Advertisement
metadata:
name: l2advertisement
namespace: metallb-system
spec:
ipAddressPools:
- first-pool

0 comments on commit d2bf1df

Please sign in to comment.