File tree Expand file tree Collapse file tree 5 files changed +37
-1
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 5 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : aws-load-balancer-controller
3
3
description : AWS Load Balancer Controller Helm chart for Kubernetes
4
- version : 1.13.0
4
+ version : 1.13.1
5
5
appVersion : v2.13.0
6
6
home : https://github.com/aws/eks-charts
7
7
icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Original file line number Diff line number Diff line change @@ -249,6 +249,7 @@ The default values set by the application itself can be confirmed [here](https:/
249
249
| ` envFrom ` | Environment variables to set for aws-load-balancer-controller pod from configMap or Secret | None |
250
250
| ` envSecretName ` | AWS credentials as environment variables from Secret (Secret keys ` key_id ` and ` access_key ` ). | None |
251
251
| ` hostNetwork ` | If ` true ` , use hostNetwork | ` false ` |
252
+ | ` dnsConfig ` | Set dnsConfig if required | ` {} ` |
252
253
| ` dnsPolicy ` | Set dnsPolicy if required | ` ClusterFirst ` |
253
254
| ` extraVolumeMounts ` | Extra volume mounts for the pod | ` [] ` |
254
255
| ` extraVolumes ` | Extra volumes for the pod | ` [] ` |
Original file line number Diff line number Diff line change 58
58
{{- if .Values.hostNetwork }}
59
59
hostNetwork : true
60
60
{{- end }}
61
+ {{- with .Values.dnsConfig }}
62
+ dnsConfig :
63
+ {{- toYaml . | nindent 8 }}
64
+ {{- end }}
61
65
{{- if .Values.dnsPolicy }}
62
66
dnsPolicy : {{ .Values.dnsPolicy }}
63
67
{{- end }}
Original file line number Diff line number Diff line change @@ -243,6 +243,23 @@ env:
243
243
# recommended if using the Amazon VPC CNI plugin.
244
244
hostNetwork : false
245
245
246
+ # Specifies the dnsConfig that should be used for pods in the deployment
247
+ #
248
+ # Tuning dnsConfig specifically ndots may be used to reduce unnecessary DNS query expansion over search domains,
249
+ # e.g. reduce ndots to avoid having requests for EC2 `ec2.eu-west-2.amazonaws.com` with default ndots of 5 get expanded to
250
+ # `ec2.eu-west-2.amazonaws.com.eu-west-2.compute.internal`.
251
+ # See https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config
252
+ dnsConfig : {}
253
+ # nameservers:
254
+ # - 1.2.3.4
255
+ # searches:
256
+ # - ns1.svc.cluster-domain.example
257
+ # - my.dns.search.suffix
258
+ # options:
259
+ # - name: ndots
260
+ # value: "2"
261
+ # - name: edns0
262
+
246
263
# Specifies the dnsPolicy that should be used for pods in the deployment
247
264
#
248
265
# This may need to be used to be changed given certain conditions. For instance, if one uses the cilium CNI
Original file line number Diff line number Diff line change @@ -308,6 +308,20 @@ env:
308
308
# recommended if using the Amazon VPC CNI plugin.
309
309
hostNetwork : false
310
310
311
+ # Specifies the dnsConfig that should be used for pods in the deployment
312
+ #
313
+ # See https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config
314
+ dnsConfig : {}
315
+ # nameservers:
316
+ # - 1.2.3.4
317
+ # searches:
318
+ # - ns1.svc.cluster-domain.example
319
+ # - my.dns.search.suffix
320
+ # options:
321
+ # - name: ndots
322
+ # value: "2"
323
+ # - name: edns0
324
+
311
325
# Specifies the dnsPolicy that should be used for pods in the deployment
312
326
#
313
327
# This may need to be used to be changed given certain conditions. For instance, if one uses the cilium CNI
You can’t perform that action at this time.
0 commit comments