chore(chart-deps): update policy-reporter to version 3.9.1 - #3510
Draft
svcAPLBot wants to merge 2 commits into
Draft
chore(chart-deps): update policy-reporter to version 3.9.1#3510svcAPLBot wants to merge 2 commits into
svcAPLBot wants to merge 2 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the policy-reporter Helm dependency to chart version 3.9.1, aligning our vendored chart values/templates with upstream changes (new config knobs, updated CRDs, and updated component image tags).
Changes:
- Bumps the chart/dependency version to 3.9.1 (with chart
appVersionset to 3.9.0 as reflected in the chart metadata/README). - Extends configuration to support Microsoft Graph API email reports and autoMemoryLimit (GOMEMLIMIT) settings.
- Updates Gateway API
HTTPRoutebackendRefs, tightens ServiceMonitor rendering behind a newmonitoring.serviceMonitor.enabledtoggle, and refreshes UI/plugin image tags + CRD schemas.
Reviewed changes
Copilot reviewed 15 out of 15 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| charts/policy-reporter/Chart.yaml | Bumps chart metadata to version 3.9.1 and appVersion 3.9.0. |
| charts/dependencies.yaml | Updates dependency pin for policy-reporter to 3.9.1. |
| charts/policy-reporter/values.yaml | Adds graphAPI + autoMemoryLimit config, updates image tags, adjusts defaults, enables serviceMonitor toggle. |
| charts/policy-reporter/README.md | Updates documented defaults/version badges to match the new chart. |
| charts/policy-reporter/configs/email-reports.tmpl | Renders emailReports.graphAPI into generated config. |
| charts/policy-reporter/configs/core.tmpl | Renders autoMemoryLimit into generated config. |
| charts/policy-reporter/templates/ui/ui.policyreporter.kyverno.io_customboards.yaml | Updates CRD schema (filters/renderOptions/required fields) and metadata annotations handling. |
| charts/policy-reporter/templates/ui/ui.policyreporter.kyverno.io_namespacecustomboards.yaml | Updates CRD schema and attempts to apply chart-level annotations (currently with a templating/YAML bug). |
| charts/policy-reporter/templates/httproute.yaml | Makes backendRefs explicit with group/kind for Service. |
| charts/policy-reporter/templates/ui/httproute.yaml | Makes backendRefs explicit with group/kind for Service (UI route). |
| charts/policy-reporter/templates/plugins/kyverno/httproute.yaml | Makes backendRefs explicit with group/kind for Service (Kyverno plugin route). |
| charts/policy-reporter/templates/monitoring/servicemonitor.yaml | Gates ServiceMonitor creation behind monitoring.serviceMonitor.enabled. |
| charts/policy-reporter/templates/cronjob-violations-report.yaml | Always defines env: and injects POD_NAMESPACE. |
| charts/policy-reporter/templates/cronjob-summary-report.yaml | Always defines env: and injects POD_NAMESPACE. |
| charts/policy-reporter/templates/clusterrole.yaml | Grants get on apps/replicasets (to support updated report handling). |
Comment on lines
5
to
+9
| annotations: | ||
| controller-gen.kubebuilder.io/version: v2.4.5-0.20250927090338-8022a0e22018+incompatible.dirty | ||
| {{- if .Values.annotations }} | ||
| annotations: | ||
| {{- toYaml .Values.annotations | nindent 4 }} | ||
| {{- end }} |
| @@ -1,4 +1,4 @@ | |||
| {{- if and .Values.monitoring.enabled }} | |||
| {{- if and .Values.monitoring.enabled .Values.monitoring.serviceMonitor.enabled }} | |||
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 15 out of 15 changed files in this pull request and generated no new comments.
Suppressed comments (1)
charts/policy-reporter/templates/ui/ui.policyreporter.kyverno.io_namespacecustomboards.yaml:9
metadatarenders twoannotations:keys (and an emptyannotations:even when.Values.annotationsis unset), which results in invalid YAML and can cause the CRD manifest to be rejected by the API server.
metadata:
annotations:
{{- if .Values.annotations }}
annotations:
{{- toYaml .Values.annotations | nindent 4 }}
{{- end }}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates the dependency policy-reporter to version 3.9.1.