Skip to content

Commit 7ca6671

Browse files
authored
docs(eks): fix heading levels for Auto Mode (#34783)
The heading levels for Auto Mode are inappropriate. I think the Auto Mode sections would be better placed under `Provision Clusters` to align with other node types. <img width="263" alt="image" src="https://github.com/user-attachments/assets/7eedd31f-de0c-4d18-b14f-379816305c67" /> ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 0d674e4 commit 7ca6671

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/@aws-cdk/aws-eks-v2-alpha/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ new eks.Cluster(this, 'hello-eks', {
100100
});
101101
```
102102

103-
## EKS Auto Mode
103+
### EKS Auto Mode
104104

105105
[Amazon EKS Auto Mode](https://aws.amazon.com/eks/auto-mode/) extends AWS management of Kubernetes clusters beyond the cluster itself, allowing AWS to set up and manage the infrastructure that enables the smooth operation of your workloads.
106106

107-
### Using Auto Mode
107+
#### Using Auto Mode
108108

109109
While `aws-eks` uses `DefaultCapacityType.NODEGROUP` by default, `aws-eks-v2` uses `DefaultCapacityType.AUTOMODE` as the default capacity type.
110110

@@ -127,7 +127,7 @@ const cluster = new eks.Cluster(this, 'EksAutoCluster', {
127127
});
128128
```
129129

130-
### Node Pools
130+
#### Node Pools
131131

132132
When Auto Mode is enabled, the cluster comes with two default node pools:
133133

@@ -148,7 +148,7 @@ const cluster = new eks.Cluster(this, 'EksAutoCluster', {
148148

149149
For more information, see [Create a Node Pool for EKS Auto Mode](https://docs.aws.amazon.com/eks/latest/userguide/create-node-pool.html).
150150

151-
### Disabling Default Node Pools
151+
#### Disabling Default Node Pools
152152

153153
You can disable the default node pools entirely by setting an empty array for `nodePools`. This is useful when you want to use Auto Mode features but manage your compute resources separately:
154154

0 commit comments

Comments
 (0)