Skip to content

Commit 194fef4

Browse files
committed
Added ipFamilyPolicy option to ingress
1 parent abebb3b commit 194fef4

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

charts/base-cluster/templates/ingress/traefik.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ spec:
5353
spec:
5454
loadBalancerIP: {{ .Values.ingress.IP | quote }}
5555
{{- end }}
56+
ipFamilyPolicy: {{ .Values.ingress.ipFamilyPolicy | quote }}
5657
gatewayClass:
5758
name: default
5859
gateway:

charts/base-cluster/values.schema.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,6 +1426,15 @@
14261426
"useProxyProtocol": {
14271427
"type": "boolean"
14281428
},
1429+
"ipFamilyPolicy": {
1430+
"type": "string",
1431+
"enum": [
1432+
"SingleStack",
1433+
"PreferDualStack",
1434+
"RequireDualStack"
1435+
],
1436+
"description": "Loadbalancer ipFamilyPolicy to enable DualStack"
1437+
},
14291438
"IP": {
14301439
"type": "string",
14311440
"pattern": "^((25[0-5]|(2[0-4]|1\\d|[1-9]|)\\d)\\.?\\b){4}$",

charts/base-cluster/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,7 @@ ingress:
439439
provider: traefik
440440
allowNginxConfigurationSnippets: false
441441
useProxyProtocol: true
442+
ipFamilyPolicy: "PreferDualStack"
442443
replicas: 2
443444
resourcesPreset: nano
444445
resources:

0 commit comments

Comments
 (0)