diff --git a/chart/monocular/Chart.yaml b/chart/monocular/Chart.yaml index 55cd38a63..683555c91 100644 --- a/chart/monocular/Chart.yaml +++ b/chart/monocular/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: monocular description: Monocular is a search and discovery front end for Helm Charts Repositories. -version: 1.4.13 +version: 1.4.14 appVersion: v1.9.0 home: https://github.com/helm/monocular sources: diff --git a/chart/monocular/README.md b/chart/monocular/README.md index 1a6032751..6d5cd1f65 100644 --- a/chart/monocular/README.md +++ b/chart/monocular/README.md @@ -64,7 +64,7 @@ sync: repos: - name: stable url: https://kubernetes-charts.storage.googleapis.com - schedule: "0 * * * *" + schedule: "*/10 * * * *" successfulJobsHistoryLimit: 1 - name: incubator url: https://kubernetes-charts-incubator.storage.googleapis.com @@ -73,7 +73,7 @@ sync: url: https://helm.github.io/monocular EOF -`schedule` and `successfulJobsHistoryLimit` are optional parameters. They default to `"0 * * * *"` and `3` respectively +`schedule` and `successfulJobsHistoryLimit` are optional parameters. They default to `"*/10 * * * *"` and `3` respectively $ helm install monocular/monocular -f custom-repos.yaml ``` diff --git a/chart/monocular/templates/repo-sync-cronjobs.yaml b/chart/monocular/templates/repo-sync-cronjobs.yaml index 4fc65a546..602200bb8 100644 --- a/chart/monocular/templates/repo-sync-cronjobs.yaml +++ b/chart/monocular/templates/repo-sync-cronjobs.yaml @@ -19,8 +19,8 @@ spec: spec: template: {{ include "monocular.sync.podTemplate" (list . $) | indent 8 }} - schedule: {{ default "0 * * * *" .schedule | quote }} + schedule: {{ default "*/10 * * * *" .schedule | quote }} successfulJobsHistoryLimit: {{ default 3 .successfulJobsHistoryLimit }} - + --- {{- end -}}