Skip to content
Snippets Groups Projects
Unverified Commit 9f1f78ae authored by Göran Pöhner's avatar Göran Pöhner Committed by GitHub
Browse files

Added additional annotation and labels for Nextcloud cron jobs

* Added additional annotation and labels for Nextcloud cron jobs
parent fe834c50
Branches
Tags 32.100.4
No related merge requests found
......@@ -8,7 +8,7 @@ maintainers:
- name: groundhog2k
# This is the chart version.
version: "0.16.4"
version: "0.16.5"
# This is the version number of the application being deployed.
appVersion: "28.0.1-apache"
......
# Nextcloud
![Version: 0.16.4](https://img.shields.io/badge/Version-0.16.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 28.0.1-apache](https://img.shields.io/badge/AppVersion-28.0.1-informational?style=flat-square)
![Version: 0.16.5](https://img.shields.io/badge/Version-0.16.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 28.0.1-apache](https://img.shields.io/badge/AppVersion-28.0.1-informational?style=flat-square)
## Changelog
......@@ -158,6 +158,8 @@ helm uninstall my-release
| cronJobs[].tolerations | list | `[]` | Tolerations for pod assignment |
| cronJobs[].nodeSelector | object | `{}` | Deployment node selector |
| cronJobs[].resources | object | `{}` | Resource limits and requests |
| cronJobs[].annotations | object | `{}` | Additional cron job annotations |
| cronJobs[].labels | object | `{}` | Additional cron job labels |
## Service paramters
......
......@@ -59,4 +59,5 @@
| 0.16.2 | 28.0.1-apache | Added optional ingressClassName and removed deprecated api support |
| 0.16.3 | 28.0.1-apache | Refactored ingress configuration and added optional labels and pathType |
| 0.16.4 | 28.0.1-apache | Added support for network policies and additional labels and annotations |
| 0.16.5 | 28.0.1-apache | Added additional labels and annotations or cron jobs |
| | | |
......@@ -13,6 +13,13 @@ metadata:
name: {{ $fullname }}-{{ $job.name }}
labels:
{{- $labels | nindent 4 }}
{{- with $job.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with $job.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 1
......
......@@ -13,6 +13,13 @@ metadata:
name: {{ $fullname }}-{{ $job.name }}
labels:
{{- $labels | nindent 4 }}
{{- with $job.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with $job.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 1
......
......@@ -39,6 +39,8 @@ defaultCronJobs:
tolerations: []
affinity: {}
resources: {}
annotations: {}
labels: {}
## Additional cron jobs
cronJobs: {}
......@@ -49,6 +51,8 @@ cronJobs: {}
# tolerations: []
# affinity: {}
# resources: {}
# annotations: {}
# labels: {}
## Number of replicas
replicas: 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment