Skip to content

Commit 1aaa48d

Browse files
Fix test failure for add-on waiting for ebs csi driver (#8559)
1 parent 60ddddc commit 1aaa48d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration/tests/addons/addons_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,8 @@ var _ = Describe("(Integration) [EKS Addons test]", func() {
808808

809809
By("removing all pod identity associations owned by the addon")
810810
clusterConfig.Addons[1].PodIdentityAssociations = &[]api.PodIdentityAssociation{}
811-
Expect(makeUpdateAddonCMD()).To(RunSuccessfully())
811+
// Don't wait for aws-ebs-csi-driver add-on because it won't become healthy without iam perms now.
812+
Expect(makeUpdateAddonCMD("--timeout", "0")).To(RunSuccessfully())
812813
assertAddonHasPodIDs(api.AWSEBSCSIDriverAddon, 0)
813814

814815
By("migrating an addon to pod identity using the utils command")

0 commit comments

Comments
 (0)