Skip to content

Commit

Permalink
[bitnami/matomo] Increase readiness probes' initial delay for VIB tes…
Browse files Browse the repository at this point in the history
…ts (#28847)
  • Loading branch information
juan131 authored Aug 13, 2024
1 parent 161cd16 commit fc93db0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .vib/matomo/runtime-parameters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ service:
ports:
http: 80
readinessProbe:
initialDelaySeconds: 90
initialDelaySeconds: 120
cronjobs:
archive:
enabled: false
Expand Down
8 changes: 6 additions & 2 deletions bitnami/matomo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 8.0.6 (2024-08-05)
## 8.0.7 (2024-08-13)

* [bitnami/matomo] Remove dokuwiki reference ([#28661](https://github.com/bitnami/charts/pull/28661))
* [bitnami/matomo] Increase readiness probes' initial delay for VIB tests ([#28847](https://github.com/bitnami/charts/pull/28847))

## <small>8.0.6 (2024-08-05)</small>

* [bitnami/matomo] Remove dokuwiki reference (#28661) ([e786767](https://github.com/bitnami/charts/commit/e786767a8aaabefd3dc8d834a5176ca5bde3bbc9)), closes [#28661](https://github.com/bitnami/charts/issues/28661)

## <small>8.0.5 (2024-07-25)</small>

Expand Down
6 changes: 3 additions & 3 deletions bitnami/matomo/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies:
version: 19.0.3
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.20.5
digest: sha256:bdb3bb68e405ddb99a5ca3861b3600439252bd1fa7e47301807c0cb13be89fc2
generated: "2024-07-25T08:56:54.795024752Z"
version: 2.22.0
digest: sha256:b177642b18397ccf1120d5bea4a729de766977e0da59a8dfd67152d884afb578
generated: "2024-08-13T09:55:30.679206+02:00"
2 changes: 1 addition & 1 deletion bitnami/matomo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ maintainers:
name: matomo
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/matomo
version: 8.0.6
version: 8.0.7
10 changes: 6 additions & 4 deletions bitnami/matomo/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,12 @@ Return the matomo pods needed initContainers
image: {{ include "matomo.volumePermissions.image" . }}
imagePullPolicy: {{ .Values.volumePermissions.image.pullPolicy | quote }}
command:
- sh
- -c
- /bin/bash
args:
- -ec
- |
mkdir -p "/bitnami/matomo"
chown -R "{{ .Values.containerSecurityContext.runAsUser }}:{{ .Values.podSecurityContext.fsGroup }}" "/bitnami/matomo"
mkdir -p /bitnami/matomo
find /bitnami/matomo -mindepth 0 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" | xargs -r chown -R {{ .Values.containerSecurityContext.runAsUser }}:{{ .Values.podSecurityContext.fsGroup }}
securityContext:
runAsUser: 0
{{- if .Values.volumePermissions.resources }}
Expand Down Expand Up @@ -216,6 +217,7 @@ Return the matomo pods needed initContainers
readOnly: true
{{- end }}
{{- end }}

{{/*
Return if cronjob X is enabled. Takes into account the deprecated value 'cronjobs.enabled'.
Use: include "matomo.cronjobs.enabled" (dict "context" $ "cronjob" "archive" )
Expand Down

0 comments on commit fc93db0

Please sign in to comment.