From d0114e20118db8128cbb56535e57deffbb1248bb Mon Sep 17 00:00:00 2001 From: Henry Arend Date: Wed, 18 Feb 2026 13:17:20 -0500 Subject: [PATCH 1/2] fix(helm): add tolerations to cronjob and setup jobs --- charts/curator/templates/cronjob.yaml | 4 ++++ charts/curator/templates/job-create-admin.yaml | 4 ++++ charts/curator/templates/job-db-migrate.yaml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/charts/curator/templates/cronjob.yaml b/charts/curator/templates/cronjob.yaml index 9f700c0..0d9d778 100644 --- a/charts/curator/templates/cronjob.yaml +++ b/charts/curator/templates/cronjob.yaml @@ -23,6 +23,10 @@ spec: nodeSelector: {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.cronjob.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: schedule-run securityContext: diff --git a/charts/curator/templates/job-create-admin.yaml b/charts/curator/templates/job-create-admin.yaml index f94a9a4..2917de0 100644 --- a/charts/curator/templates/job-create-admin.yaml +++ b/charts/curator/templates/job-create-admin.yaml @@ -85,4 +85,8 @@ spec: {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} {{- end }} \ No newline at end of file diff --git a/charts/curator/templates/job-db-migrate.yaml b/charts/curator/templates/job-db-migrate.yaml index 675ca8e..86d4a9d 100644 --- a/charts/curator/templates/job-db-migrate.yaml +++ b/charts/curator/templates/job-db-migrate.yaml @@ -76,4 +76,8 @@ spec: nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} From 29d264e0908fb3e81ddd803f3d88777b3fd9bd99 Mon Sep 17 00:00:00 2001 From: Henry Arend Date: Wed, 18 Feb 2026 13:18:42 -0500 Subject: [PATCH 2/2] chore(docs): add tolerations to other jobs --- charts/curator/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/curator/README.md b/charts/curator/README.md index 26aa896..75cb11a 100644 --- a/charts/curator/README.md +++ b/charts/curator/README.md @@ -1,6 +1,6 @@ # curator -![Version: 2.2.0](https://img.shields.io/badge/Version-2.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.08-03](https://img.shields.io/badge/AppVersion-2025.08--03-informational?style=flat-square) +![Version: 2.3.0](https://img.shields.io/badge/Version-2.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.08-03](https://img.shields.io/badge/AppVersion-2025.08--03-informational?style=flat-square) A Helm chart for Curator in a Container in Kubernetes