a21be22b38
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/matomo](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/matomo)) | digest | `554f81d` → `cb69b03` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9tYXRvbW8iLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
91 lines
2.9 KiB
YAML
91 lines
2.9 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: public.ecr.aws/bitnami/matomo
|
|
tag: 5.10.0@sha256:cb69b03bdb074eb67df9c22797d0cb1c836091d21cff6c444a7d267b2147458a
|
|
pullPolicy: IfNotPresent
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/index.php"
|
|
readiness:
|
|
path: "/index.php"
|
|
startup:
|
|
path: "/index.php"
|
|
env:
|
|
APACHE_HTTP_PORT_NUMBER: "{{ .Values.service.main.ports.main.port }}"
|
|
APACHE_HTTPS_PORT_NUMBER: "{{ .Values.service.https.ports.https.port }}"
|
|
MATOMO_DATABASE_PORT_NUMBER: 3306
|
|
MATOMO_DATABASE_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
|
|
MATOMO_DATABASE_USER: "{{ .Values.mariadb.mariadbUsername }}"
|
|
PHP_DATE_TIMEZONE: "{{ .Values.TZ }}"
|
|
# User / Site Config
|
|
MATOMO_USERNAME: "admin"
|
|
MATOMO_PASSWORD: "password"
|
|
MATOMO_EMAIL: "myemail@example.com"
|
|
MATOMO_WEBSITE_NAME: "My Website"
|
|
MATOMO_WEBSITE_HOST: "https://web.example.com"
|
|
MATOMO_HOST: "127.0.0.1"
|
|
# Reverse Proxy Config
|
|
MATOMO_ENABLE_PROXY_URI_HEADER: false
|
|
MATOMO_ENABLE_ASSUME_SECURE_PROTOCOL: false
|
|
MATOMO_ENABLE_FORCE_SSL: false
|
|
# No defaults, but usually this header is used
|
|
# MATOMO_PROXY_CLIENT_HEADER: "HTTP_X_FORWARDED_FOR"
|
|
# SMTP Config
|
|
MATOMO_SMTP_HOST: ""
|
|
MATOMO_SMTP_PORT: ""
|
|
MATOMO_SMTP_USER: ""
|
|
MATOMO_SMTP_PASSWORD: ""
|
|
# Available protocols are: "ssl", "tls", "none"
|
|
MATOMO_SMTP_PROTOCOL: ""
|
|
# Available mechanisms are: "Plain", "Login", "Crammd5"
|
|
MATOMO_SMTP_AUTH: "Plain"
|
|
# PHP Config
|
|
PHP_MEMORY_LIMIT: "2048M"
|
|
PHP_ENABLE_OPCACHE: true
|
|
# PHP_EXPOSE_PHP:
|
|
# PHP_MAX_EXECUTION_TIME:
|
|
# PHP_MAX_INPUT_TIME:
|
|
# PHP_MAX_INPUT_VARS:
|
|
# PHP_POST_MAX_SIZE:
|
|
# PHP_UPLOAD_MAX_FILESIZE:
|
|
MATOMO_DATABASE_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
|
|
key: plainhost
|
|
MATOMO_DATABASE_PASSWORD: "{{ .Values.mariadb.password }}"
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
port: 10172
|
|
targetPort: 10172
|
|
https:
|
|
enabled: true
|
|
ports:
|
|
https:
|
|
enabled: true
|
|
protocol: https
|
|
port: 10173
|
|
targetPort: 10173
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/bitnami/matomo"
|
|
mariadb:
|
|
enabled: true
|
|
mariadbUsername: matomo
|
|
mariadbDatabase: matomo
|