mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 06:47:30 +08:00
[bitnami/matomo] add serviceAccountName parameter to CronJob pods (#29182)
This commit is contained in:
@@ -1,8 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 8.0.10 (2024-08-22)
|
## 8.0.11 (2024-09-04)
|
||||||
|
|
||||||
* [bitnami/matomo] Release 8.0.10 ([#28972](https://github.com/bitnami/charts/pull/28972))
|
* [bitnami/matomo] add serviceAccountName parameter to CronJob pods ([#29182](https://github.com/bitnami/charts/pull/29182))
|
||||||
|
|
||||||
|
## <small>8.0.10 (2024-08-22)</small>
|
||||||
|
|
||||||
|
* [bitnami/matomo] Release 8.0.10 (#28972) ([890f055](https://github.com/bitnami/charts/commit/890f055a0c00ef6889c34e25108ecab0ab2c86e3)), closes [#28972](https://github.com/bitnami/charts/issues/28972)
|
||||||
|
|
||||||
## <small>8.0.9 (2024-08-15)</small>
|
## <small>8.0.9 (2024-08-15)</small>
|
||||||
|
|
||||||
|
|||||||
@@ -39,4 +39,4 @@ maintainers:
|
|||||||
name: matomo
|
name: matomo
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/matomo
|
- https://github.com/bitnami/charts/tree/main/bitnami/matomo
|
||||||
version: 8.0.10
|
version: 8.0.11
|
||||||
|
|||||||
@@ -381,6 +381,8 @@ helm install my-release --set persistence.existingClaim=PVC_NAME oci://REGISTRY_
|
|||||||
| -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ---------------- |
|
| -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ---------------- |
|
||||||
| `cronjobs.taskScheduler.enabled` | Whether to enable scheduled mail-to-task CronJob | `true` |
|
| `cronjobs.taskScheduler.enabled` | Whether to enable scheduled mail-to-task CronJob | `true` |
|
||||||
| `cronjobs.taskScheduler.schedule` | Kubernetes CronJob schedule | `*/5 * * * *` |
|
| `cronjobs.taskScheduler.schedule` | Kubernetes CronJob schedule | `*/5 * * * *` |
|
||||||
|
| `cronjobs.taskScheduler.serviceAccountName` | Attach serviceAccountName to the pod of the CronJob | `""` |
|
||||||
|
| `cronjobs.taskScheduler.automountServiceAccountToken` | Mount Service Account token in pod of the CronJob | `true` |
|
||||||
| `cronjobs.taskScheduler.suspend` | Whether to create suspended CronJob | `false` |
|
| `cronjobs.taskScheduler.suspend` | Whether to create suspended CronJob | `false` |
|
||||||
| `cronjobs.taskScheduler.affinity` | Affinity for CronJob pod assignment | `{}` |
|
| `cronjobs.taskScheduler.affinity` | Affinity for CronJob pod assignment | `{}` |
|
||||||
| `cronjobs.taskScheduler.nodeSelector` | Node labels for CronJob pod assignment. Evaluated as a template. | `{}` |
|
| `cronjobs.taskScheduler.nodeSelector` | Node labels for CronJob pod assignment. Evaluated as a template. | `{}` |
|
||||||
@@ -410,6 +412,8 @@ helm install my-release --set persistence.existingClaim=PVC_NAME oci://REGISTRY_
|
|||||||
| `cronjobs.taskScheduler.extraEnvVars` | Extra environment variables for the taskScheduler CronJob | `[]` |
|
| `cronjobs.taskScheduler.extraEnvVars` | Extra environment variables for the taskScheduler CronJob | `[]` |
|
||||||
| `cronjobs.archive.enabled` | Whether to enable scheduled mail-to-task CronJob | `true` |
|
| `cronjobs.archive.enabled` | Whether to enable scheduled mail-to-task CronJob | `true` |
|
||||||
| `cronjobs.archive.schedule` | Kubernetes CronJob schedule | `*/5 * * * *` |
|
| `cronjobs.archive.schedule` | Kubernetes CronJob schedule | `*/5 * * * *` |
|
||||||
|
| `cronjobs.archive.serviceAccountName` | Attach serviceAccountName to the pod of the CronJob | `""` |
|
||||||
|
| `cronjobs.archive.automountServiceAccountToken` | Mount Service Account token in pod of the CronJob | `true` |
|
||||||
| `cronjobs.archive.suspend` | Whether to create suspended CronJob | `false` |
|
| `cronjobs.archive.suspend` | Whether to create suspended CronJob | `false` |
|
||||||
| `cronjobs.archive.affinity` | Affinity for CronJob pod assignment | `{}` |
|
| `cronjobs.archive.affinity` | Affinity for CronJob pod assignment | `{}` |
|
||||||
| `cronjobs.archive.tolerations` | Tolerations for CronJob pod assignment | `[]` |
|
| `cronjobs.archive.tolerations` | Tolerations for CronJob pod assignment | `[]` |
|
||||||
|
|||||||
@@ -33,6 +33,10 @@ spec:
|
|||||||
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.cronjobs.archive.podAnnotations "context" $ ) | nindent 12 }}
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.cronjobs.archive.podAnnotations "context" $ ) | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- if .Values.cronjobs.archive.serviceAccountName }}
|
||||||
|
serviceAccountName: {{ .Values.cronjobs.archive.serviceAccountName | quote }}
|
||||||
|
{{- end }}
|
||||||
|
automountServiceAccountToken: {{ .Values.cronjobs.archive.automountServiceAccountToken }}
|
||||||
{{- include "matomo.imagePullSecrets" . | nindent 10 }}
|
{{- include "matomo.imagePullSecrets" . | nindent 10 }}
|
||||||
restartPolicy: OnFailure
|
restartPolicy: OnFailure
|
||||||
{{- if .Values.cronjobs.archive.affinity }}
|
{{- if .Values.cronjobs.archive.affinity }}
|
||||||
@@ -205,6 +209,10 @@ spec:
|
|||||||
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.cronjobs.taskScheduler.podAnnotations "context" $ ) | nindent 12 }}
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.cronjobs.taskScheduler.podAnnotations "context" $ ) | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- if .Values.cronjobs.taskScheduler.serviceAccountName }}
|
||||||
|
serviceAccountName: {{ .Values.cronjobs.taskScheduler.serviceAccountName | quote }}
|
||||||
|
{{- end }}
|
||||||
|
automountServiceAccountToken: {{ .Values.cronjobs.taskScheduler.automountServiceAccountToken }}
|
||||||
{{- include "matomo.imagePullSecrets" . | nindent 10 }}
|
{{- include "matomo.imagePullSecrets" . | nindent 10 }}
|
||||||
{{- if .Values.cronjobs.taskScheduler.affinity }}
|
{{- if .Values.cronjobs.taskScheduler.affinity }}
|
||||||
affinity: {{- include "common.tplvalues.render" (dict "value" .Values.cronjobs.taskScheduler.affinity "context" $) | nindent 12 }}
|
affinity: {{- include "common.tplvalues.render" (dict "value" .Values.cronjobs.taskScheduler.affinity "context" $) | nindent 12 }}
|
||||||
|
|||||||
@@ -963,6 +963,12 @@ cronjobs:
|
|||||||
## @param cronjobs.taskScheduler.schedule Kubernetes CronJob schedule
|
## @param cronjobs.taskScheduler.schedule Kubernetes CronJob schedule
|
||||||
##
|
##
|
||||||
schedule: "*/5 * * * *"
|
schedule: "*/5 * * * *"
|
||||||
|
## @param cronjobs.taskScheduler.serviceAccountName Attach serviceAccountName to the pod of the CronJob
|
||||||
|
##
|
||||||
|
serviceAccountName: ""
|
||||||
|
## @param cronjobs.taskScheduler.automountServiceAccountToken Mount Service Account token in pod of the CronJob
|
||||||
|
##
|
||||||
|
automountServiceAccountToken: true
|
||||||
## @param cronjobs.taskScheduler.suspend Whether to create suspended CronJob
|
## @param cronjobs.taskScheduler.suspend Whether to create suspended CronJob
|
||||||
##
|
##
|
||||||
suspend: false
|
suspend: false
|
||||||
@@ -1062,6 +1068,12 @@ cronjobs:
|
|||||||
## @param cronjobs.archive.schedule Kubernetes CronJob schedule
|
## @param cronjobs.archive.schedule Kubernetes CronJob schedule
|
||||||
##
|
##
|
||||||
schedule: "*/5 * * * *"
|
schedule: "*/5 * * * *"
|
||||||
|
## @param cronjobs.archive.serviceAccountName Attach serviceAccountName to the pod of the CronJob
|
||||||
|
##
|
||||||
|
serviceAccountName: ""
|
||||||
|
## @param cronjobs.archive.automountServiceAccountToken Mount Service Account token in pod of the CronJob
|
||||||
|
##
|
||||||
|
automountServiceAccountToken: true
|
||||||
## @param cronjobs.archive.suspend Whether to create suspended CronJob
|
## @param cronjobs.archive.suspend Whether to create suspended CronJob
|
||||||
##
|
##
|
||||||
suspend: false
|
suspend: false
|
||||||
|
|||||||
Reference in New Issue
Block a user