1fb62ce8ee
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [bitnami/matomo](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/matomo)) | patch | `5.1.1` -> `5.1.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: 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:eyJjcmVhdGVkSW5WZXIiOiIzOC45NS40IiwidXBkYXRlZEluVmVyIjoiMzguOTUuNCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbm9uLW1ham9yIl19-->
94 lines
2.9 KiB
YAML
94 lines
2.9 KiB
YAML
image:
|
|
repository: bitnami/matomo
|
|
tag: 5.1.2@sha256:f635d88c2b77094f5a12de7ab58d303564238c5614e803708db3af48887e06c9
|
|
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
|
|
includeCommon: true
|
|
mariadbUsername: matomo
|
|
mariadbDatabase: matomo
|
|
portal:
|
|
open:
|
|
enabled: true
|