Skip to content

Commit 815b039

Browse files
authored
docs(eks): change cdk8s-charts index level on README (#24207)
Closes #22073 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c4e714e commit 815b039

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ const chart2 = cluster.addHelmChart('MyChart', {
12371237
chart2.node.addDependency(chart1);
12381238
```
12391239

1240-
#### CDK8s Charts
1240+
### CDK8s Charts
12411241

12421242
[CDK8s](https://cdk8s.io/) is an open-source library that enables Kubernetes manifest authoring using familiar programming languages. It is founded on the same technologies as the AWS CDK, such as [`constructs`](https://github.com/aws/constructs) and [`jsii`](https://github.com/aws/jsii).
12431243

@@ -1313,7 +1313,7 @@ const myChart = new MyChart(new cdk8s.App(), 'MyChart', { bucket });
13131313
cluster.addCdk8sChart('my-chart', myChart);
13141314
```
13151315

1316-
##### Custom CDK8s Constructs
1316+
#### Custom CDK8s Constructs
13171317

13181318
You can also compose a few stock `cdk8s+` constructs into your own custom construct. However, since mixing scopes between `aws-cdk` and `cdk8s` is currently not supported, the `Construct` class
13191319
you'll need to use is the one from the [`constructs`](https://github.com/aws/constructs) module, and not from `@aws-cdk/core` like you normally would.
@@ -1350,7 +1350,7 @@ export class LoadBalancedWebService extends constructs.Construct {
13501350
}
13511351
```
13521352

1353-
##### Manually importing k8s specs and CRD's
1353+
#### Manually importing k8s specs and CRD's
13541354

13551355
If you find yourself unable to use `cdk8s+`, or just like to directly use the `k8s` native objects or CRD's, you can do so by manually importing them using the `cdk8s-cli`.
13561356

0 commit comments

Comments
 (0)