File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,7 @@ The default values set by the application itself can be confirmed [here](https:/
186
186
| ` webhookTLS.caCert ` | TLS CA certificate for webhook (auto-generated if not provided) | "" |
187
187
| ` webhookTLS.cert ` | TLS certificate for webhook (auto-generated if not provided) | "" |
188
188
| ` webhookTLS.key ` | TLS private key for webhook (auto-generated if not provided) | "" |
189
+ | ` serviceAnnotations ` | Annotations to be added to the provisioned webhook service resource | ` {} ` |
189
190
| ` serviceMaxConcurrentReconciles ` | Maximum number of concurrently running reconcile loops for service | None |
190
191
| ` targetgroupbindingMaxConcurrentReconciles ` | Maximum number of concurrently running reconcile loops for targetGroupBinding | None |
191
192
| ` targetgroupbindingMaxExponentialBackoffDelay ` | Maximum duration of exponential backoff for targetGroupBinding reconcile failures | None |
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ kind: Service
3
3
metadata :
4
4
name : {{ template "aws-load-balancer-controller.namePrefix" . }}-webhook-service
5
5
namespace : {{ .Release.Namespace }}
6
+ {{- with .Values.serviceAnnotations }}
7
+ annotations :
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
6
10
labels :
7
11
{{ include "aws-load-balancer-controller.labels" . | indent 4 }}
8
12
spec :
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ updateStrategy: {}
73
73
# maxSurge: 1
74
74
# maxUnavailable: 1
75
75
76
+ # serviceAnnotations contains annotations to be added to the provisioned webhook service resource
77
+ serviceAnnotations : {}
78
+
76
79
podAnnotations : {}
77
80
78
81
podLabels : {}
You can’t perform that action at this time.
0 commit comments