File tree Expand file tree Collapse file tree 5 files changed +21
-3
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 5 files changed +21
-3
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.3.2
4
+ version : 1.3.3
5
5
appVersion : v2.3.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 @@ -202,6 +202,7 @@ The default values set by the application itself can be confirmed [here](https:/
202
202
| ` livenessProbe ` | Liveness probe settings for the controller | (see ` values.yaml ` ) |
203
203
| ` env ` | Environment variables to set for aws-load-balancer-controller pod | None |
204
204
| ` hostNetwork ` | If ` true ` , use hostNetwork | ` false ` |
205
+ | ` dnsPolicy ` | Set dnsPolicy if required | ` ClusterFirst ` |
205
206
| ` extraVolumeMounts ` | Extra volume mounts for the pod | ` [] ` |
206
207
| ` extraVolumes ` | Extra volumes for the pod | ` [] ` |
207
208
| ` defaultTags ` | Default tags to apply to all AWS resources managed by this controller | ` {} ` |
@@ -212,4 +213,4 @@ The default values set by the application itself can be confirmed [here](https:/
212
213
| ` enableEndpointSlices ` | If enabled, controller uses k8s EndpointSlices instead of Endpoints for IP targets | ` false ` |
213
214
| ` enableBackendSecurityGroup ` | If enabled, controller uses shared security group for backend traffic | ` true ` |
214
215
| ` backendSecurityGroup ` | Backend security group to use instead of auto created one if the feature is enabled | `` |
215
- | ` disableRestrictedSecurityGroupRules ` | If disabled, controller will not specify port range restriction in the backend security group rules | ` false ` |
216
+ | ` disableRestrictedSecurityGroupRules ` | If disabled, controller will not specify port range restriction in the backend security group rules | ` false ` |
Original file line number Diff line number Diff line change 46
46
{{- if .Values.hostNetwork }}
47
47
hostNetwork : true
48
48
{{- end }}
49
+ {{- if .Values.dnsPolicy }}
50
+ dnsPolicy : {{ .Values.dnsPolicy }}
51
+ {{- end }}
49
52
containers :
50
53
- name : {{ .Chart.Name }}
51
54
args :
Original file line number Diff line number Diff line change @@ -154,6 +154,13 @@ env:
154
154
# recommended if using the Amazon VPC CNI plugin.
155
155
hostNetwork : false
156
156
157
+ # Specifies the dnsPolicy that should be used for pods in the deployment
158
+ #
159
+ # This may need to be used to be changed given certain conditions. For instance, if one uses the cilium CNI
160
+ # with certain settings, one may need to set `hostNetwork: true` and webhooks won't work unless `dnsPolicy`
161
+ # is set to `ClusterFirstWithHostNet`. See https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
162
+ dnsPolicy :
163
+
157
164
# extraVolumeMounts are the additional volume mounts. This enables setting up IRSA on non-EKS Kubernetes cluster
158
165
extraVolumeMounts :
159
166
- name : aws-iam-token
Original file line number Diff line number Diff line change @@ -184,6 +184,13 @@ env:
184
184
# recommended if using the Amazon VPC CNI plugin.
185
185
hostNetwork : false
186
186
187
+ # Specifies the dnsPolicy that should be used for pods in the deployment
188
+ #
189
+ # This may need to be used to be changed given certain conditions. For instance, if one uses the cilium CNI
190
+ # with certain settings, one may need to set `hostNetwork: true` and webhooks won't work unless `dnsPolicy`
191
+ # is set to `ClusterFirstWithHostNet`. See https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
192
+ dnsPolicy :
193
+
187
194
# extraVolumeMounts are the additional volume mounts. This enables setting up IRSA on non-EKS Kubernetes cluster
188
195
extraVolumeMounts :
189
196
# - name: aws-iam-token
@@ -224,4 +231,4 @@ enableBackendSecurityGroup:
224
231
backendSecurityGroup :
225
232
226
233
# disableRestrictedSecurityGroupRules specifies whether to disable creating port-range restricted security group rules for traffic
227
- disableRestrictedSecurityGroupRules:
234
+ disableRestrictedSecurityGroupRules :
You can’t perform that action at this time.
0 commit comments