cdk-eks-blueprints icon indicating copy to clipboard operation
cdk-eks-blueprints copied to clipboard

EKS Auto Mode please

Open taivo123 opened this issue 1 year ago • 3 comments

Describe the feature

EKS Auto Mode please

Use Case

I'm always frustrated when I have to do more work than needed, EKS Auto Mode helps alleviate that :)

Proposed Solution

No response

Other Information

No response

Acknowledgements

  • [ ] I may be able to implement this feature request

CDK version used

latest

EKS Blueprints Version

No response

Node.js Version

latest

Environment details (OS name and version, etc.)

Mac

taivo123 avatar Dec 04 '24 10:12 taivo123

Waiting for at least L1 constructs to be available in CDK.

shapirov103 avatar Dec 05 '24 01:12 shapirov103

Hello team, I see, L1 CfnCluster now supports enabling Auto Mode.

new eks.CfnCluster(this, 'MyCfnCluster', {
  resourcesVpcConfig: {
....
...
  computeConfig: {
    enabled: true,
    nodePools: ['nodePools'],
    nodeRoleArn: 'nodeRoleArn',
  },

Can this be prioritized for EKS Blueprints?

ruchirshetye-aws avatar Dec 13 '24 05:12 ruchirshetye-aws

There is no L1 support to just attach auto mode to an existing cluster, the L1 is all or nothing - creates the cluster from scratch.

All cluster providers are using the L2 construct to provision the cluster. Please upvote this issue to add this support to the blueprints: https://github.com/aws/aws-cdk/issues/32364

Changing the cluster provider to use L1 will require a bit of refactoring, custom cluster provider that will use L1 is possible but will require L1 to create cluster and then use something like an importclusterprovider.

shapirov103 avatar Dec 13 '24 14:12 shapirov103

This issue has been automatically marked as stale because it has been open 60 days with no activity. Remove stale label or comment or this issue will be closed in 10 days

github-actions[bot] avatar Mar 14 '25 00:03 github-actions[bot]

Addressed with #1135. Please see https://awslabs.github.io/cdk-eks-blueprints/cluster-providers/automode-cluster-provider/

Please feel free to reopen if you see any issues.

shapirov103 avatar May 05 '25 15:05 shapirov103