From f0fa4c0cc03777690679d7379dd7d01a6a3efc15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Austerm=C3=BChle?= Date: Tue, 24 May 2022 10:02:16 +0200 Subject: [PATCH 1/2] Add podAnnotations and podLabels to values and docs --- charts/descheduler/README.md | 2 ++ charts/descheduler/values.yaml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/charts/descheduler/README.md b/charts/descheduler/README.md index 5851ea657..b6a7a642a 100644 --- a/charts/descheduler/README.md +++ b/charts/descheduler/README.md @@ -69,6 +69,8 @@ The following table lists the configurable parameters of the _descheduler_ chart | `serviceAccount.create` | If `true`, create a service account for the cron job | `true` | | `serviceAccount.name` | The name of the service account to use, if not set and create is true a name is generated using the fullname template | `nil` | | `serviceAccount.annotations` | Specifies custom annotations for the serviceAccount | `{}` | +| `podAnnotations` | Annotations to add to Pods | `{}` | +| `podLabels` | Labels to add to Pods | `{}` | | `nodeSelector` | Node selectors to run the descheduler cronjob/deployment on specific nodes | `nil` | | `service.enabled` | If `true`, create a service for deployment | `false` | | `serviceMonitor.enabled` | If `true`, create a ServiceMonitor for deployment | `false` | diff --git a/charts/descheduler/values.yaml b/charts/descheduler/values.yaml index 756c5fe35..8862add08 100644 --- a/charts/descheduler/values.yaml +++ b/charts/descheduler/values.yaml @@ -136,6 +136,10 @@ serviceAccount: # Specifies custom annotations for the serviceAccount annotations: {} +podAnnotations: {} + +podLabels: {} + livenessProbe: failureThreshold: 3 httpGet: From d8a609a6e77863e87a4fa37f92b8c3f939edccd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Austerm=C3=BChle?= Date: Tue, 24 May 2022 18:07:58 +0200 Subject: [PATCH 2/2] Add more precise description --- charts/descheduler/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/descheduler/README.md b/charts/descheduler/README.md index b6a7a642a..210660fb9 100644 --- a/charts/descheduler/README.md +++ b/charts/descheduler/README.md @@ -69,8 +69,8 @@ The following table lists the configurable parameters of the _descheduler_ chart | `serviceAccount.create` | If `true`, create a service account for the cron job | `true` | | `serviceAccount.name` | The name of the service account to use, if not set and create is true a name is generated using the fullname template | `nil` | | `serviceAccount.annotations` | Specifies custom annotations for the serviceAccount | `{}` | -| `podAnnotations` | Annotations to add to Pods | `{}` | -| `podLabels` | Labels to add to Pods | `{}` | +| `podAnnotations` | Annotations to add to the descheduler Pods | `{}` | +| `podLabels` | Labels to add to the descheduler Pods | `{}` | | `nodeSelector` | Node selectors to run the descheduler cronjob/deployment on specific nodes | `nil` | | `service.enabled` | If `true`, create a service for deployment | `false` | | `serviceMonitor.enabled` | If `true`, create a ServiceMonitor for deployment | `false` |