From 3263b12a4a00863b261bf9f2a2ae98e4214ba969 Mon Sep 17 00:00:00 2001 From: Alessandro Carrano <105300721+acarranoqovery@users.noreply.github.com> Date: Tue, 4 Feb 2025 17:56:50 +0100 Subject: [PATCH] chore: add info on toleration to be used with daemonsets (#521) * chore: add info on toleration to be used with daemonsets --- .../deploy-daemonset-with-karpenter.md | 44 +++++++++++++++---- .../deploy-daemonset-with-karpenter.md.erb | 42 +++++++++++++++--- website/metadata.js | 2 +- 3 files changed, 72 insertions(+), 16 deletions(-) diff --git a/website/guides/advanced/deploy-daemonset-with-karpenter.md b/website/guides/advanced/deploy-daemonset-with-karpenter.md index 6b1f95f711..a3e5936bcf 100644 --- a/website/guides/advanced/deploy-daemonset-with-karpenter.md +++ b/website/guides/advanced/deploy-daemonset-with-karpenter.md @@ -1,9 +1,9 @@ --- -last_modified_on: "2025-01-08" +last_modified_on: "2025-02-04" $schema: "/.meta/.schemas/guides.json" title: Deploy a DaemonSet in a Karpenter context description: How to ensure your DaemonSet is well deployed when you are using Karpenter. -author_github: https://github.com/baalooos +author_github: https://github.com/acarranoqovery tags: ["type: tutorial", "technology: qovery", "installation_guide: aws"] hide_pagination: true --- @@ -12,7 +12,9 @@ import Alert from '@site/src/components/Alert'; import Steps from '@site/src/components/Steps'; import Assumptions from '@site/src/components/Assumptions'; -[Karpenter](https://karpenter.sh/) is a great way to cut your AWS bill. It provides a simple and flexible way to scale and optimize your resource consumption. But there is a known [issue](https://github.com/kubernetes-sigs/karpenter/issues/731) with capacity planning when deploying DaemonSets. In this guide, we will explore this issue and demonstrate how to resolve it using PriorityClass. +[Karpenter](https://karpenter.sh/) is a great way to cut your AWS bill. It provides a simple and flexible way to scale and optimize your resource consumption. + +But when it comes to deploying DaemonSets, you need to take care of some specific configurations to ensure that your DaemonSet is well deployed. This guide will show you how to deploy a DaemonSet in a Karpenter context.