File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ Parameters related to Kubernetes.
133
133
| ` service.loadBalancerSourceRanges ` | List of IP CIDRs allowed access to load balancer (if supported) | ` [] ` |
134
134
| ` service.sslLdapPortNodePort ` | Nodeport of External service port for SSL if service.type is NodePort | ` nil ` |
135
135
| ` service.type ` | Service type can be ClusterIP, NodePort, LoadBalancer | ` ClusterIP ` |
136
+ | ` service.ipFamilyPolicy ` | Represents the dual-stack-ness requested or required by this Service. | ` SingleStack ` |
136
137
| ` persistence.enabled ` | Whether to use PersistentVolumes or not | ` false ` |
137
138
| ` persistence.storageClass ` | Storage class for PersistentVolumes. | ` <unset> ` |
138
139
| ` persistence.existingClaim ` | Add existing Volumes Claim. | ` <unset> ` |
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ metadata:
17
17
{{- end }}
18
18
spec :
19
19
type : {{ .Values.service.type }}
20
+ ipFamilyPolicy : {{ .Values.service.ipFamilyPolicy }}
20
21
{{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerIP }}
21
22
loadBalancerIP : {{ .Values.service.loadBalancerIP }}
22
23
{{- end }}
Original file line number Diff line number Diff line change @@ -96,6 +96,12 @@ service:
96
96
type : ClusterIP
97
97
sessionAffinity : None
98
98
99
+ # # Represents the dual-stack-ness requested or required by this Service. Possible values are
100
+ # # SingleStack, PreferDualStack or RequireDualStack.
101
+ # # The ipFamilies and clusterIPs fields depend on the value of this field.
102
+ # # Ref: https://kubernetes.io/docs/concepts/services-networking/dual-stack/
103
+ ipFamilyPolicy : SingleStack
104
+
99
105
# Default configuration for openldap as environment variables. These get injected directly in the container.
100
106
# Use the env variables from https://hub.docker.com/r/bitnami/openldap/
101
107
# Be careful, do not modify the following values unless you know exactly what your are doing
You can’t perform that action at this time.
0 commit comments