From ec7e167c4b81142a6909196eb03f8cbf9873d5e7 Mon Sep 17 00:00:00 2001 From: Vitor Vezani Date: Fri, 13 Dec 2024 14:11:23 -0300 Subject: [PATCH] add cve-reports-email-sender cronjob --- stable/fairwinds-insights/CHANGELOG.md | 5 ++++- stable/fairwinds-insights/Chart.yaml | 2 +- stable/fairwinds-insights/README.md | 1 + stable/fairwinds-insights/values.yaml | 6 ++++++ 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/stable/fairwinds-insights/CHANGELOG.md b/stable/fairwinds-insights/CHANGELOG.md index 2b5daf9c7..925aa2310 100644 --- a/stable/fairwinds-insights/CHANGELOG.md +++ b/stable/fairwinds-insights/CHANGELOG.md @@ -1,10 +1,13 @@ # Changelog +## 2.6.0 +* Adds `cronjobs.cve-reports-email-sender` - inserts CVEs statistics by App Group + ## 2.5.1 * Update application version to 16.3. [See the release notes for more details](https://insights.docs.fairwinds.com/release-notes) ## 2.5.0 -* Adds `cronjobs.app_groups_cves_statistics` - inserts CVEs statistics by App Group +* Adds `cronjobs.app-groups-cves-statistics` - inserts CVEs statistics by App Group ## 2.4.0 * Adds `cronjobs.sync-action-items-iac-files` definition - this cronjob is responsible for linking action-items and IaC Files diff --git a/stable/fairwinds-insights/Chart.yaml b/stable/fairwinds-insights/Chart.yaml index 74b465345..4777e42cb 100644 --- a/stable/fairwinds-insights/Chart.yaml +++ b/stable/fairwinds-insights/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "16.3" description: A Helm chart to run the Fairwinds Insights server name: fairwinds-insights -version: 2.5.1 +version: 2.6.0 kubeVersion: ">= 1.22.0-0" maintainers: - name: rbren diff --git a/stable/fairwinds-insights/README.md b/stable/fairwinds-insights/README.md index aed34a012..9fa5b9c0e 100644 --- a/stable/fairwinds-insights/README.md +++ b/stable/fairwinds-insights/README.md @@ -57,6 +57,7 @@ See [insights.docs.fairwinds.com](https://insights.docs.fairwinds.com/technical- | cronjobs.image-vulns-refresh | object | `{"command":"image_vulnerabilities_refresher","schedule":"*/30 * * * *"}` | Options for the image-vulns-refresh job. | | cronjobs.sync-action-items-iac-files | object | `{"command":"sync_action_items_iac_files","schedule":"0 * * * *"}` | Options for the sync-action-items-iac-files cronjob. | | cronjobs.app-groups-cves-statistics | object | `{"command":"app_groups_cves_statistics","schedule":"0 9,21 * * *"}` | Options for the app_groups_cves_statistics cronjob. | +| cronjobs.cve-reports-email-sender | object | `{"command":"cve_reports_email_sender","schedule":"0 3 1 * *"}` | Options for the cve_reports_email_sender cronjob. | | selfHostedSecret | string | `nil` | | | additionalEnvironmentVariables | object | `{}` | Additional Environment Variables to set on the Fairwinds Insights pods. | | rbac.serviceAccount.annotations | object | `{}` | Annotations to add to the service account | diff --git a/stable/fairwinds-insights/values.yaml b/stable/fairwinds-insights/values.yaml index 74c17bf72..29ad8e67e 100644 --- a/stable/fairwinds-insights/values.yaml +++ b/stable/fairwinds-insights/values.yaml @@ -202,11 +202,17 @@ cronjobs: sync-action-items-iac-files: command: sync_action_items_iac_files schedule: "0 * * * *" + # -- Options for the app_groups_cves_statistics cronjob. app-groups-cves-statistics: command: app_groups_cves_statistics schedule: "0 9,21 * * *" + # -- Options for the cve_reports_email_sender cronjob. + cve-reports-email-sender: + command: cve_reports_email_sender + schedule: "0 3 1 * *" + selfHostedSecret: # -- Additional Environment Variables to set on the Fairwinds Insights pods.