UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 34075f86 authored by Justen Mehl's avatar Justen Mehl Committed by Robert Massey
Browse files

Expose automountServiceAccountToken value for ServiceAccount

parent c1ef5b91
No related branches found
No related tags found
1 merge request!41Expose automountServiceAccountToken value for ServiceAccount
# Changelog
Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## [2.16.0-bb.5] - 2023-10-5
### Changed
- Exposed automountServiceAccountToken as a value
## [2.16.0-bb.4] - 2023-9-19
### Changed
- Upgraded gluon to 0.4.1
......
# kyverno-reporter
![Version: 2.16.0-bb.4](https://img.shields.io/badge/Version-2.16.0--bb.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.12.0](https://img.shields.io/badge/AppVersion-2.12.0-informational?style=flat-square)
![Version: 2.16.0-bb.5](https://img.shields.io/badge/Version-2.16.0--bb.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.12.0](https://img.shields.io/badge/AppVersion-2.12.0-informational?style=flat-square)
Policy Reporter watches for PolicyReport Resources.
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
......@@ -51,6 +51,7 @@ helm install kyverno-reporter chart/
| serviceAccount.create | bool | `true` | |
| serviceAccount.annotations | object | `{}` | |
| serviceAccount.name | string | `""` | |
| serviceAccount.automountServiceAccountToken | bool | `true` | |
| service.enabled | bool | `true` | |
| service.annotations | object | `{}` | |
| service.labels | object | `{}` | |
......
......@@ -5,7 +5,7 @@ description: |
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
type: application
version: 2.16.0-bb.4
version: 2.16.0-bb.5
appVersion: 2.12.0
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
......
......@@ -15,4 +15,5 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
{{- end }}
......@@ -39,6 +39,8 @@ serviceAccount:
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
# BB addition
automountServiceAccountToken: true
service:
enabled: true
......
......@@ -37,6 +37,7 @@ This is a high level list of all changes from the upstream chart. Ensure that th
- Update to point to the Ironbank image for `policy-reporter`
- Addition of values for `networkPolicies`, `openshift`, `istio`, and `bbtests`
- Addition of `securityContext.runAsGroup` set to `1234`
- Addition of value `serviceAccount.automountServiceAccountToken`
# Testing new Kyverno Reporter version
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment