File tree 3 files changed +8
-0
lines changed
helm/aws-load-balancer-controller
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,7 @@ The default values set by the application itself can be confirmed [here](https:/
212
212
| ` ingressClassParams.spec ` | IngressClassParams defined ingress specifications | {} |
213
213
| ` region ` | The AWS region for the kubernetes cluster | None |
214
214
| ` vpcId ` | The VPC ID for the Kubernetes cluster | None |
215
+ | ` vpcTags ` | This is alternative to vpcId. Set this when your pods are unable to use the metadata service to determine VPC automatically. | None
215
216
| ` awsApiEndpoints ` | Custom AWS API Endpoints | None |
216
217
| ` awsApiThrottle ` | Custom AWS API throttle settings | None |
217
218
| ` awsMaxRetries ` | Maximum retries for AWS APIs | None |
Original file line number Diff line number Diff line change @@ -173,6 +173,9 @@ spec:
173
173
{{- if .Values.loadBalancerClass }}
174
174
- --load-balancer-class={{ .Values.loadBalancerClass }}
175
175
{{- end }}
176
+ {{- if .Values.vpcTags }}
177
+ - --aws-vpc-tags={{ include "aws-load-balancer-controller.convertMapToCsv" .Values.vpcTags | trimSuffix "," }}
178
+ {{- end }}
176
179
{{- if or .Values.env .Values.envSecretName }}
177
180
env :
178
181
{{- if .Values.env}}
Original file line number Diff line number Diff line change @@ -161,6 +161,10 @@ region:
161
161
# The VPC ID for the Kubernetes cluster. Set this manually when your pods are unable to use the metadata service to determine this automatically
162
162
vpcId :
163
163
164
+ # This is alternative to vpcId. Set this when your pods are unable to use the metadata service to determine VPC automatically.
165
+ vpcTags : {}
166
+ # Name: tagValue
167
+
164
168
# Custom AWS API Endpoints (serviceID1=URL1,serviceID2=URL2)
165
169
awsApiEndpoints :
166
170
You can’t perform that action at this time.
0 commit comments