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 @@ -212,6 +212,7 @@ The default values set by the application itself can be confirmed [here](https:/
212212| ` ingressClassParams.spec ` | IngressClassParams defined ingress specifications | {} |
213213| ` region ` | The AWS region for the kubernetes cluster | None |
214214| ` 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
215216| ` awsApiEndpoints ` | Custom AWS API Endpoints | None |
216217| ` awsApiThrottle ` | Custom AWS API throttle settings | None |
217218| ` awsMaxRetries ` | Maximum retries for AWS APIs | None |
Original file line number Diff line number Diff line change @@ -173,6 +173,9 @@ spec:
173173 {{- if .Values.loadBalancerClass }}
174174 - --load-balancer-class={{ .Values.loadBalancerClass }}
175175 {{- end }}
176+ {{- if .Values.vpcTags }}
177+ - --aws-vpc-tags={{ include "aws-load-balancer-controller.convertMapToCsv" .Values.vpcTags | trimSuffix "," }}
178+ {{- end }}
176179 {{- if or .Values.env .Values.envSecretName }}
177180 env :
178181 {{- if .Values.env}}
Original file line number Diff line number Diff line change @@ -161,6 +161,10 @@ region:
161161# The VPC ID for the Kubernetes cluster. Set this manually when your pods are unable to use the metadata service to determine this automatically
162162vpcId :
163163
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+
164168# Custom AWS API Endpoints (serviceID1=URL1,serviceID2=URL2)
165169awsApiEndpoints :
166170
You can’t perform that action at this time.
0 commit comments