mirror of
https://github.com/netbirdio/helms.git
synced 2026-05-22 17:13:06 -07:00
Add ip families
This commit is contained in:
@@ -10,6 +10,13 @@ metadata:
|
||||
{{- end }}
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
{{- with .Values.service.ipFamilies }}
|
||||
ipFamilies:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.service.ipFamilyPolicy }}
|
||||
ipFamilyPolicy: {{ . }}
|
||||
{{- end }}
|
||||
{{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancer.ip }}
|
||||
loadBalancerIP: {{ .Values.service.loadBalancer.ip }}
|
||||
{{- end }}
|
||||
|
||||
@@ -148,6 +148,14 @@ service:
|
||||
port: 443
|
||||
# -- ACME HTTP-01 challenge port (only exposed if acme.enabled).
|
||||
acmePort: 80
|
||||
# -- IP families for dual-stack support. Dual-stack allows clients with
|
||||
# IPv6 connectivity to reach peers directly without NAT traversal.
|
||||
ipFamilies:
|
||||
- IPv4
|
||||
- IPv6
|
||||
# -- IP family policy: SingleStack, PreferDualStack, or RequireDualStack.
|
||||
# PreferDualStack falls back gracefully on single-stack clusters.
|
||||
ipFamilyPolicy: PreferDualStack
|
||||
|
||||
loadBalancer:
|
||||
# -- Source ranges allowed to reach the LoadBalancer.
|
||||
|
||||
Reference in New Issue
Block a user