diff --git a/charts/kyverno/README.md b/charts/kyverno/README.md index fac43288ba..fcced122af 100644 --- a/charts/kyverno/README.md +++ b/charts/kyverno/README.md @@ -642,6 +642,7 @@ The chart values are organised per component. | cleanupJobs.admissionReports.image.repository | string | `"bitnami/kubectl"` | Image repository | | cleanupJobs.admissionReports.image.tag | string | `"1.26.4"` | Image tag Defaults to `latest` if omitted | | cleanupJobs.admissionReports.image.pullPolicy | string | `nil` | Image pull policy Defaults to image.pullPolicy if omitted | +| cleanupJobs.admissionReports.imagePullSecrets | list | `[]` | Image pull secrets | | cleanupJobs.admissionReports.schedule | string | `"*/10 * * * *"` | Cronjob schedule | | cleanupJobs.admissionReports.threshold | int | `10000` | Reports threshold, if number of reports are above this value the cronjob will start deleting them | | cleanupJobs.admissionReports.history | object | `{"failure":1,"success":1}` | Cronjob history | @@ -655,6 +656,7 @@ The chart values are organised per component. | cleanupJobs.clusterAdmissionReports.image.repository | string | `"bitnami/kubectl"` | Image repository | | cleanupJobs.clusterAdmissionReports.image.tag | string | `"1.26.4"` | Image tag Defaults to `latest` if omitted | | cleanupJobs.clusterAdmissionReports.image.pullPolicy | string | `nil` | Image pull policy Defaults to image.pullPolicy if omitted | +| cleanupJobs.clusterAdmissionReports.imagePullSecrets | list | `[]` | Image pull secrets | | cleanupJobs.clusterAdmissionReports.schedule | string | `"*/10 * * * *"` | Cronjob schedule | | cleanupJobs.clusterAdmissionReports.threshold | int | `10000` | Reports threshold, if number of reports are above this value the cronjob will start deleting them | | cleanupJobs.clusterAdmissionReports.history | object | `{"failure":1,"success":1}` | Cronjob history | diff --git a/charts/kyverno/templates/cleanup/cleanup-admission-reports.yaml b/charts/kyverno/templates/cleanup/cleanup-admission-reports.yaml index e648c0beea..83ce15ceae 100644 --- a/charts/kyverno/templates/cleanup/cleanup-admission-reports.yaml +++ b/charts/kyverno/templates/cleanup/cleanup-admission-reports.yaml @@ -48,6 +48,10 @@ spec: resources: {{- toYaml . | nindent 14 }} {{- end }} + {{- with .Values.cleanupJobs.admissionReports.imagePullSecrets }} + imagePullSecrets: + {{- tpl (toYaml .) $ | nindent 12 }} + {{- end }} restartPolicy: OnFailure {{- with .Values.cleanupJobs.admissionReports.tolerations }} tolerations: diff --git a/charts/kyverno/templates/cleanup/cleanup-cluster-admission-reports.yaml b/charts/kyverno/templates/cleanup/cleanup-cluster-admission-reports.yaml index bdd0697512..b2f2ae2a3c 100644 --- a/charts/kyverno/templates/cleanup/cleanup-cluster-admission-reports.yaml +++ b/charts/kyverno/templates/cleanup/cleanup-cluster-admission-reports.yaml @@ -48,6 +48,10 @@ spec: resources: {{- toYaml . | nindent 14 }} {{- end }} + {{- with .Values.cleanupJobs.clusterAdmissionReports.imagePullSecrets }} + imagePullSecrets: + {{- tpl (toYaml .) $ | nindent 12 }} + {{- end }} restartPolicy: OnFailure {{- with .Values.cleanupJobs.clusterAdmissionReports.tolerations }} tolerations: diff --git a/charts/kyverno/values.yaml b/charts/kyverno/values.yaml index 451ec9bcd2..19dcffe78f 100644 --- a/charts/kyverno/values.yaml +++ b/charts/kyverno/values.yaml @@ -412,6 +412,10 @@ cleanupJobs: # Defaults to image.pullPolicy if omitted pullPolicy: ~ + # -- Image pull secrets + imagePullSecrets: [] + # - name: secretName + # -- Cronjob schedule schedule: '*/10 * * * *' @@ -464,6 +468,10 @@ cleanupJobs: # Defaults to image.pullPolicy if omitted pullPolicy: ~ + # -- Image pull secrets + imagePullSecrets: [] + # - name: secretName + # -- Cronjob schedule schedule: '*/10 * * * *'