Skip to content

Commit

Permalink
fix: recyclarr cronjob template error (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Ortega <[email protected]>
  • Loading branch information
M0NsTeRRR authored Jun 26, 2024
1 parent 3381cb8 commit 1d4b2f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/recyclarr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kubeVersion: ">=1.23.0-0"
name: recyclarr
description: recyclarr helm chart for Kubernetes
type: application
version: 0.1.4
version: 0.1.5
# image: ghcr.io/recyclarr/recyclarr
appVersion: "6.0.2"
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions charts/recyclarr/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# recyclarr

![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.2](https://img.shields.io/badge/AppVersion-6.0.2-informational?style=flat-square)
![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.2](https://img.shields.io/badge/AppVersion-6.0.2-informational?style=flat-square)

recyclarr helm chart for Kubernetes

Expand Down Expand Up @@ -44,7 +44,7 @@ helm repo add adminafk https://helm-charts.adminafk.fr
| imagePullSecrets | list | `[]` | |
| job.failedJobsHistoryLimit | int | `1` | |
| job.restartPolicy | string | `"never"` | |
| job.schedule | string | `"@daily"` | |
| job.schedule | string | `"0 0 * * *"` | |
| job.successfulJobsHistoryLimit | int | `1` | |
| jobAnnotations | object | `{}` | |
| jobLabels | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/recyclarr/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
spec:
restartPolicy: {{- with .Values.job.restartPolicy }}
restartPolicy: {{ .Values.job.restartPolicy }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 12 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/recyclarr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ nameOverride: ""
fullnameOverride: ""

job:
schedule: "@daily"
schedule: "0 0 * * *"
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 1
restartPolicy: "never"
Expand Down

0 comments on commit 1d4b2f5

Please sign in to comment.