-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws-eks: aws-auth creation failure takes 1 hour #30455
Comments
Can you try remove this and create a new VPC and see if the issue still exists? const vpc = Vpc.fromLookup(this, "vpc", {
vpcId: "your-vpc-id",
}); And awsAuth.addMastersRole(
Role.fromRoleArn(this, "clusterAdminAtAwsAuth", clusterAdmin.roleArn),
clusterAdmin.roleName,
); This should not be required as when you specifiy
The aws-cdk/packages/aws-cdk-lib/aws-eks/lib/cluster.ts Lines 1681 to 1685 in a46bbc3
|
I try it and process is complete successfully! Thank you for your help. |
|
Comments on closed issues and PRs are hard for our team to see. If you need help, please open a new issue that references this one. |
Describe the bug
In creation cluster stack, aws-auth creation step was failed and it took 1 hour for fail parent stack.
Error message is below,
(Parent stack fails after 1 hour regardless of whether Lambda processing fails or succeeds)
Expected Behavior
If aws-auth creation fail/success, the parent Stack will also fail/success immediately.
Current Behavior
If aws-auth creation fail/success, the parent Stack fail after 1 hour.
Reproduction Steps
deploy by this code.
Possible Solution
I read deployed Lambda handler code, but I cannot find cfn response.
ref. here
Where is cfn response for Python custom resource handlers?
Additional Information/Context
No response
CDK CLI Version
2.137.0 (build bb90b4c)
Framework Version
No response
Node.js Version
v20.14.0
OS
AmazonLinux 2023.3.20240312
Language
TypeScript
Language Version
5.4.3
Other information
No response
The text was updated successfully, but these errors were encountered: