diff --git a/lib/addons/aws-loadbalancer-controller/index.ts b/lib/addons/aws-loadbalancer-controller/index.ts index ccd9b9974..c6b27131c 100644 --- a/lib/addons/aws-loadbalancer-controller/index.ts +++ b/lib/addons/aws-loadbalancer-controller/index.ts @@ -6,6 +6,7 @@ import { registries } from "../../utils/registry-utils"; import { HelmAddOn, HelmAddOnUserProps } from "../helm-addon"; import { AwsLoadbalancerControllerIamPolicy } from "./iam-policy"; import { supportsALL } from "../../utils"; +import { Duration } from "aws-cdk-lib"; /** * Configuration options for the add-on. @@ -119,7 +120,7 @@ export class AwsLoadBalancerControllerAddOn extends HelmAddOn { ...image, vpcId: clusterInfo.cluster.vpc.vpcId, ...this.options.values, - }, undefined, false); + }, undefined, true, Duration.minutes(15)); awsLoadBalancerControllerChart.node.addDependency(serviceAccount); // return the Promise Construct for any teams that may depend on this