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 @@ -185,6 +185,7 @@ The default values set by the application itself can be confirmed [here](https:/
185
185
| ` rbac.create ` | if ` true ` , create and use RBAC resources | ` true ` |
186
186
| ` serviceAccount.annotations ` | optional annotations to add to service account | None |
187
187
| ` serviceAccount.automountServiceAccountToken ` | Automount API credentials for a Service Account | ` true ` |
188
+ | ` serviceAccount.imagePullSecrets ` | List of image pull secrets to add to the Service Account | ` [] ` |
188
189
| ` serviceAccount.create ` | If ` true ` , create a new service account | ` true ` |
189
190
| ` serviceAccount.name ` | Service account to be used | None |
190
191
| ` terminationGracePeriodSeconds ` | Time period for controller pod to do a graceful shutdown | 10 |
Original file line number Diff line number Diff line change @@ -11,4 +11,8 @@ metadata:
11
11
{{- toYaml . | nindent 4 }}
12
12
{{- end }}
13
13
automountServiceAccountToken : {{ .Values.serviceAccount.automountServiceAccountToken }}
14
+ {{- with .Values.serviceAccount.imagePullSecrets }}
15
+ imagePullSecrets :
16
+ {{ toYaml . }}
17
+ {{- end }}
14
18
{{- end -}}
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ serviceAccount:
26
26
name :
27
27
# Automount API credentials for a Service Account.
28
28
automountServiceAccountToken : true
29
+ # List of image pull secrets to add to the Service Account.
30
+ imagePullSecrets :
31
+ # - name: docker
29
32
30
33
rbac :
31
34
# Specifies whether rbac resources should be created
You can’t perform that action at this time.
0 commit comments