23 lines
500 B
YAML
23 lines
500 B
YAML
{{- range .Values.L2Advertisements }}
|
|
{{- if $.Release.IsInstall }}
|
|
{{- fail "Please only add MetalLB configuration after initial installation" }}
|
|
{{- end }}
|
|
---
|
|
apiVersion: metallb.io/v1beta1
|
|
kind: L2Advertisement
|
|
metadata:
|
|
name: {{ .name }}
|
|
spec:
|
|
ipAddressPools:
|
|
{{- range .addressPools }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
{{- if .nodeSelectors }}
|
|
{{- range .nodeSelectors }}
|
|
nodeSelectors:
|
|
- matchLabels:
|
|
kubernetes.io/hostname: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|