38 lines
1.5 KiB
YAML
38 lines
1.5 KiB
YAML
---
|
|
# Bitnami chart
|
|
# https://github.com/bitnami/charts/blob/main/bitnami/mariadb/values.yaml
|
|
|
|
architecture: standalone
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/mariadb
|
|
tag: 10.9
|
|
digest: ""
|
|
## Specify a imagePullPolicy
|
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
|
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
pullPolicy: IfNotPresent
|
|
|
|
## MariaDB Authentication parameters
|
|
##
|
|
auth:
|
|
## @param auth.rootPassword Password for the `root` user. Ignored if existing secret is provided.
|
|
## ref: https://github.com/bitnami/containers/tree/main/bitnami/mariadb#setting-the-root-password-on-first-run
|
|
##
|
|
# rootPassword: ""
|
|
## @param auth.database Name for a custom database to create
|
|
## ref: https://github.com/bitnami/containers/blob/main/bitnami/mariadb/README.md#creating-a-database-on-first-run
|
|
##
|
|
database: test
|
|
## @param auth.username Name for a custom user to create
|
|
## ref: https://github.com/bitnami/containers/blob/main/bitnami/mariadb/README.md#creating-a-database-user-on-first-run
|
|
##
|
|
username: "test"
|
|
## @param auth.password Password for the new user. Ignored if existing secret is provided
|
|
##
|
|
# password: ""
|
|
## @param auth.existingSecret Use existing secret for password details (`auth.rootPassword`, `auth.password`, `auth.replicationPassword` will be ignored and picked up from this secret). The secret has to contain the keys `mariadb-root-password`, `mariadb-replication-password` and `mariadb-password`
|
|
##
|
|
existingSecret: "mariadb-secrets"
|