Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[on-hold] INSIGHTS-555 - [infra] add new cronjob to send CVEs report emails for eligible users #1557

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion stable/fairwinds-insights/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion stable/fairwinds-insights/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions stable/fairwinds-insights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
6 changes: 6 additions & 0 deletions stable/fairwinds-insights/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down