Skip to content

Commit

Permalink
Merge pull request #293 from boniek83/patch-1
Browse files Browse the repository at this point in the history
add priorityClassName to pods
  • Loading branch information
fjogeleit authored Apr 5, 2023
2 parents d6e0e8f + 2d77417 commit b456fe0
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
8 changes: 4 additions & 4 deletions charts/policy-reporter/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ dependencies:
version: 2.7.1
- name: ui
repository: ""
version: 2.9.2
version: 2.9.3
- name: kyvernoPlugin
repository: ""
version: 1.5.3
digest: sha256:9c5e7f31a2b942fa714eaf1f3a939827cd60a8e7229eff6d92d740a6511b32cf
generated: "2023-03-31T17:26:50.439822+02:00"
version: 1.5.4
digest: sha256:274143bd81946a2e65f7349e88222d31b2c4c2f9153671a502f5ea254d24954c
generated: "2023-04-05T14:57:22.183437589+02:00"
4 changes: 2 additions & 2 deletions charts/policy-reporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
version: "2.7.1"
- name: ui
condition: ui.enabled
version: "2.9.2"
version: "2.9.3"
- name: kyvernoPlugin
condition: kyvernoPlugin.enabled
version: "1.5.3"
version: "1.5.4"
2 changes: 1 addition & 1 deletion charts/policy-reporter/charts/kyvernoPlugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: kyvernoPlugin
description: Policy Reporter Kyverno Plugin

type: application
version: 1.5.3
version: 1.5.4
appVersion: 1.5.1
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 2 additions & 0 deletions charts/policy-reporter/charts/kyvernoPlugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ image:

imagePullSecrets: []

priorityClassName: ""

replicaCount: 1

deploymentStrategy: {}
Expand Down
2 changes: 1 addition & 1 deletion charts/policy-reporter/charts/ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: ui
description: Policy Reporter UI

type: application
version: 2.9.2
version: 2.9.3
appVersion: 1.8.3
3 changes: 3 additions & 0 deletions charts/policy-reporter/charts/ui/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 2 additions & 0 deletions charts/policy-reporter/charts/ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ enabled: false
# Override the chart name used for all resources
nameOverride: ""

priorityClassName: ""

image:
registry: ghcr.io
repository: kyverno/policy-reporter-ui
Expand Down

0 comments on commit b456fe0

Please sign in to comment.