Skip to content

Commit

Permalink
fix: wait for
Browse files Browse the repository at this point in the history
  • Loading branch information
pflorek committed May 7, 2022
1 parent 377076a commit 0a76f56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aws-load-balancer-controller.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Stack } from "aws-cdk-lib";
import { Duration, Stack } from "aws-cdk-lib";
import * as ec2 from "aws-cdk-lib/aws-ec2";
import * as eks from "aws-cdk-lib/aws-eks";
import * as iam from "aws-cdk-lib/aws-iam";
Expand Down Expand Up @@ -61,6 +61,8 @@ export class AwsLoadBalancerController extends Construct {
name: serviceAccount.serviceAccountName,
},
},
wait: true,
timeout: Duration.minutes(15),
});
chart.node.addDependency(serviceAccount, namespaceManifest);
}
Expand Down
2 changes: 2 additions & 0 deletions test/__snapshots__/integ.default.test.ts.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0a76f56

Please sign in to comment.