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
docs(eks): add documentation about add-ons (#30815)
### Issue # (if applicable)
None
### Reason for this change
Addon L2 construct is added by #30576 but there is no documentation about it in the README.md.
### Description of changes
Add Add-ons documentation to README.md
### Description of how you validated changes
None
### 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*
[Add-ons](https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html) is a software that provides supporting operational capabilities to Kubernetes applications. The EKS module supports adding add-ons to your cluster using the `eks.Addon` class.
1844
+
1845
+
```ts
1846
+
declareconst cluster:eks.Cluster;
1847
+
1848
+
neweks.Addon(this, 'Addon', {
1849
+
cluster,
1850
+
addonName: 'aws-guardduty-agent',
1851
+
addonVersion: 'v1.6.1',
1852
+
});
1853
+
```
1854
+
1840
1855
## Using existing clusters
1841
1856
1842
1857
The Amazon EKS library allows defining Kubernetes resources such as [Kubernetes
0 commit comments