Last active
May 14, 2024 21:41
-
-
Save danehans/81f4bffd52efb07420a461a824589617 to your computer and use it in GitHub Desktop.
Install MetalLB in a Kind Cluster
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
#!/bin/sh | |
set -euo pipefail | |
# Setup default values | |
METALLB_VERSION=${METALLB_VERSION:-"v0.13.7"} | |
## Install MetalLB. | |
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/"${METALLB_VERSION}"/config/manifests/metallb-native.yaml | |
needCreate="$(kubectl get secret -n metallb-system memberlist --no-headers --ignore-not-found -o custom-columns=NAME:.metadata.name)" | |
if [ -z "$needCreate" ]; then | |
kubectl create secret generic -n metallb-system memberlist --from-literal=secretkey="$(openssl rand -base64 128)" | |
fi | |
# Wait for MetalLB to become available. | |
kubectl rollout status -n metallb-system deployment/controller --timeout 5m | |
kubectl rollout status -n metallb-system daemonset/speaker --timeout 5m | |
# Apply config with addresses based on docker network IPAM. | |
subnet=$(docker network inspect kind | jq -r '.[].IPAM.Config[].Subnet | select(contains(":") | not)') | |
# Assume default kind network subnet prefix of 16, and choose addresses in that range. | |
address_first_octets=$(echo "${subnet}" | awk -F. '{printf "%s.%s",$1,$2}') | |
address_range="${address_first_octets}.255.200-${address_first_octets}.255.250" | |
kubectl apply -f - <<EOF | |
apiVersion: metallb.io/v1beta1 | |
kind: IPAddressPool | |
metadata: | |
namespace: metallb-system | |
name: kube-services | |
spec: | |
addresses: | |
- ${address_range} | |
--- | |
apiVersion: metallb.io/v1beta1 | |
kind: L2Advertisement | |
metadata: | |
name: kube-services | |
namespace: metallb-system | |
spec: | |
ipAddressPools: | |
- kube-services | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment