mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
Add priorityClassName to pods
Signed-off-by: Rafał Boniecki <rafal@boniecki.cc>
This commit is contained in:
parent
3bad240d5f
commit
79a0e2e3ea
3 changed files with 6 additions and 1 deletions
|
@ -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.18.2
|
||||
version: 2.18.3
|
||||
appVersion: 2.14.1
|
||||
|
||||
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
|
||||
|
|
|
@ -38,6 +38,9 @@ spec:
|
|||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.priorityClassName }}
|
||||
priorityClassName: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
|
|
|
@ -9,6 +9,8 @@ image:
|
|||
|
||||
imagePullSecrets: []
|
||||
|
||||
priorityClassName: ""
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
deploymentStrategy: {}
|
||||
|
|
Loading…
Reference in a new issue