Skip to content

Commit

Permalink
Merge pull request #1102 from wombelix/fix_wait_for_alc_deployed
Browse files Browse the repository at this point in the history
fix(aws-lb-controller): wait till deployed
  • Loading branch information
shapirov103 authored Dec 24, 2024
2 parents 12dd1c9 + 1b3a41a commit 6c0e113
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/addons/aws-loadbalancer-controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6c0e113

Please sign in to comment.