diff --git a/bitnami/matomo/Chart.yaml b/bitnami/matomo/Chart.yaml index 7e5a930229..ca50a8c4ed 100644 --- a/bitnami/matomo/Chart.yaml +++ b/bitnami/matomo/Chart.yaml @@ -39,4 +39,4 @@ maintainers: name: matomo sources: - https://github.com/bitnami/charts/tree/main/bitnami/matomo -version: 5.0.1 +version: 5.1.0 diff --git a/bitnami/matomo/README.md b/bitnami/matomo/README.md index 00b7230042..6c6e828ff6 100644 --- a/bitnami/matomo/README.md +++ b/bitnami/matomo/README.md @@ -102,6 +102,7 @@ The command removes all the Kubernetes components associated with the chart and | `priorityClassName` | Matomo pods' priorityClassName | `""` | | `schedulerName` | Name of the k8s scheduler (other than default) | `""` | | `topologySpreadConstraints` | Topology Spread Constraints for pod assignment | `[]` | +| `automountServiceAccountToken` | Mount Service Account token in pod | `true` | | `hostAliases` | Add deployment host aliases | `[]` | | `extraEnvVars` | Extra environment variables | `[]` | | `extraEnvVarsCM` | ConfigMap containing extra env vars | `""` | diff --git a/bitnami/matomo/templates/deployment.yaml b/bitnami/matomo/templates/deployment.yaml index 670fb0b948..8d46a5ab7d 100644 --- a/bitnami/matomo/templates/deployment.yaml +++ b/bitnami/matomo/templates/deployment.yaml @@ -61,6 +61,7 @@ spec: {{- if .Values.tolerations }} tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.tolerations "context" $) | nindent 8 }} {{- end }} + automountServiceAccountToken: {{ .Values.automountServiceAccountToken }} {{- if .Values.hostAliases }} # yamllint disable rule:indentation hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }} diff --git a/bitnami/matomo/values.yaml b/bitnami/matomo/values.yaml index fae84bdf89..ec27066dc2 100644 --- a/bitnami/matomo/values.yaml +++ b/bitnami/matomo/values.yaml @@ -152,6 +152,9 @@ schedulerName: "" ## The value is evaluated as a template ## topologySpreadConstraints: [] +## @param automountServiceAccountToken Mount Service Account token in pod +## +automountServiceAccountToken: true ## @param hostAliases [array] Add deployment host aliases ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ ##