You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Statement: AWS's EKS Upstream has poor default values for CoreDNS Feature Request: Have future version of EKS Blueprints default to better defaults, specifically:
have a hard requirement to spread replicas of coredns across nodes
have CoreDNS autoscaling on by default
Use Case
EKS Blueprints is supposed to implement best practices by default.
Best practice is
hard requirement to spread coredns replicas across nodes, vs a soft preference.
coredns autoscaling enabled by default.
Just because EKS upstream has poor default values doesn't mean this project should.
Proposed Solution
Have a future version of EKS Blueprints use the following default values for CoreDNS
Note: "auto" would have to map to a supported version of the addon. (like "v1.11.1-eksbuild.11")
aws eks describe-addon-configuration --addon-name coredns --addon-version v1.11.1-eksbuild.8 --query configurationSchema --output text | jq .
^-- shows autoscaling is not available on the older version
(the above shows a shema, with autoscaling missing)
aws eks describe-addon-configuration --addon-name coredns --addon-version v1.11.1-eksbuild.11 --query configurationSchema --output text | jq .
^-- shows autoscaling is available in the newer version aws eks describe-addon-configuration --addon-name coredns --addon-version v1.11.1-eksbuild.11 --query configurationSchema --output text | jq . | grep auto
ugh ok, nvm I'll edit this, there's no upstream bug. I just typo'd the auto scaling part
"autoscaling" --> "autoScaling", that said the feature request is still valid.
neoakris
changed the title
Feature Request & upstream bug?: Update CoreDNS and the CoreDNS Addon's Default's that eks blueprints uses
Feature Request: Update CoreDNS and the CoreDNS Addon's Default's that eks blueprints uses
Aug 19, 2024
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
Describe the feature
Problem Statement: AWS's EKS Upstream has poor default values for CoreDNS
Feature Request: Have future version of EKS Blueprints default to better defaults, specifically:
Use Case
EKS Blueprints is supposed to implement best practices by default.
Best practice is
Just because EKS upstream has poor default values doesn't mean this project should.
Proposed Solution
Have a future version of EKS Blueprints use the following default values for CoreDNS
Note: "auto" would have to map to a supported version of the addon. (like "v1.11.1-eksbuild.11")
Other Information
aws eks describe-addon-configuration --addon-name coredns --addon-version v1.11.1-eksbuild.8 --query configurationSchema --output text | jq .
^-- shows autoscaling is not available on the older version
(the above shows a shema, with autoscaling missing)
aws eks describe-addon-configuration --addon-name coredns --addon-version v1.11.1-eksbuild.11 --query configurationSchema --output text | jq .
^-- shows autoscaling is available in the newer version
aws eks describe-addon-configuration --addon-name coredns --addon-version v1.11.1-eksbuild.11 --query configurationSchema --output text | jq . | grep auto
Useful Note about cdk-eks-blueprints v1.15.1:
DEBUG Core add-on coredns has autoselected version v1.11.1-eksbuild.8
(which doesn't support the above config)DEBUG Core add-on coredns is at version v1.11.1-eksbuild.11
(which does support the above config)
Acknowledgements
CDK version used
2.133.0
EKS Blueprints Version
1.15.1
Node.js Version
v20.15.0
Environment details (OS name and version, etc.)
Mac OS Sonoma 14.5
The text was updated successfully, but these errors were encountered: