From f376efb120ae9f53841fb08408e46c9c102226dd Mon Sep 17 00:00:00 2001 From: Kazuho CryerShinozuka Date: Wed, 10 Jul 2024 05:01:18 +0900 Subject: [PATCH] temp --- packages/aws-cdk-lib/aws-eks/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages/aws-cdk-lib/aws-eks/README.md b/packages/aws-cdk-lib/aws-eks/README.md index 8a8bce08726e0..01a43dd1c923f 100644 --- a/packages/aws-cdk-lib/aws-eks/README.md +++ b/packages/aws-cdk-lib/aws-eks/README.md @@ -1837,6 +1837,20 @@ declare const cluster: eks.Cluster; const loadBalancerAddress = cluster.getServiceLoadBalancerAddress('my-service'); ``` +## Add-ons + +[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. + +```ts +declare const cluster: eks.Cluster; + +new eks.Addon(this, 'Addon', { + cluster, + addonName: 'aws-guardduty-agent', + addonVersion: '3.0.0', +}); +``` + ## Using existing clusters The Amazon EKS library allows defining Kubernetes resources such as [Kubernetes