fix: Don't allow empty passwords

This commit is contained in:
2025-09-11 11:05:14 +02:00
parent 7e0e8498d5
commit 4f5c1965ce
+3 -3
View File
@@ -92,7 +92,7 @@ customPostInitScripts: {}
## @param allowEmptyPassword Allow DB blank passwords ## @param allowEmptyPassword Allow DB blank passwords
## ref: https://github.com/bitnami/containers/tree/main/bitnami/matomo#environment-variables ## ref: https://github.com/bitnami/containers/tree/main/bitnami/matomo#environment-variables
## ##
allowEmptyPassword: true allowEmptyPassword: false
## @param command Override default container command (useful when using custom images) ## @param command Override default container command (useful when using custom images)
## ##
command: [] command: []
@@ -601,7 +601,7 @@ mariadb:
## ref: https://github.com/bitnami/containers/blob/main/bitnami/mariadb/README.md#creating-a-database-user-on-first-run ## ref: https://github.com/bitnami/containers/blob/main/bitnami/mariadb/README.md#creating-a-database-user-on-first-run
## ##
username: bn_matomo username: bn_matomo
password: "mylove" password: ""
primary: primary:
## Enable persistence using Persistent Volume Claims ## Enable persistence using Persistent Volume Claims
## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/
@@ -663,7 +663,7 @@ externalDatabase:
user: bn_matomo user: bn_matomo
password: "" password: ""
database: bitnami_matomo database: bitnami_matomo
existingSecret: "matomo-mariadb" existingSecret: matomo-mariadb
## @section Volume Permissions parameters ## @section Volume Permissions parameters
## ##