TrueChartsClone/charts/enterprise/metallb/templates/ipaddresspool.yaml

18 lines
430 B
YAML
Raw Normal View History

{{- range .Values.ipAddressPools }}
2022-09-13 18:17:28 +00:00
{{- if $.Release.IsInstall }}
{{- fail "Please only add MetalLB configuration after initial installation" }}
{{- end }}
---
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: {{ .name }}
spec:
addresses:
{{- range .addresses }}
- {{ . }}
{{- end }}
autoAssign: {{ .autoAssign | default true }}
avoidBuggyIPs: {{ .avoidBuggyIPs | default false }}
{{- end }}