File tree Expand file tree Collapse file tree 5 files changed +11
-1
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 5 files changed +11
-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.4.1
4
+ version : 1.4.2
5
5
appVersion : v2.4.1
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 @@ -178,6 +178,7 @@ The default values set by the application itself can be confirmed [here](https:/
178
178
| ` tolerations ` | Controller pod toleration for taints | ` {} ` |
179
179
| ` affinity ` | Affinity for pod assignment (string or map) (soft affinity if string "default", set explicitly if map) | ` default ` |
180
180
| ` topologySpreadConstraints ` | Topology Spread Constraints for pod assignment | ` {} ` |
181
+ | ` deploymentAnnotations ` | Annotations to add to deployment | ` {} ` |
181
182
| ` podAnnotations ` | Annotations to add to each pod | ` {} ` |
182
183
| ` podLabels ` | Labels to add to each pod | ` {} ` |
183
184
| ` rbac.create ` | if ` true ` , create and use RBAC resources | ` true ` |
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ kind: Deployment
3
3
metadata :
4
4
name : {{ include "aws-load-balancer-controller.fullname" . }}
5
5
namespace : {{ .Release.Namespace }}
6
+ {{- if .Values.deploymentAnnotations }}
7
+ annotations :
8
+ {{- toYaml .Values.deploymentAnnotations | nindent 4 }}
9
+ {{- end }}
6
10
labels :
7
11
{{- include "aws-load-balancer-controller.labels" . | nindent 4 }}
8
12
spec :
Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ affinity: {}
70
70
# more details here: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
71
71
topologySpreadConstraints : {}
72
72
73
+ deploymentAnnotations : {}
74
+
73
75
podAnnotations : {}
74
76
75
77
podLabels : {}
Original file line number Diff line number Diff line change @@ -91,6 +91,9 @@ updateStrategy: {}
91
91
# serviceAnnotations contains annotations to be added to the provisioned webhook service resource
92
92
serviceAnnotations : {}
93
93
94
+ # deploymentAnnotations contains annotations for the controller deployment
95
+ deploymentAnnotations : {}
96
+
94
97
podAnnotations : {}
95
98
96
99
podLabels : {}
You can’t perform that action at this time.
0 commit comments