This PR contains the following updates: | Package | Update | Change | |---|---|---| | bitnami/mariadb | digest | `256bba8` -> `815054a` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone Europe/Amsterdam, 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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
77 lines
2.6 KiB
YAML
77 lines
2.6 KiB
YAML
image:
|
|
repository: bitnami/mariadb
|
|
pullPolicy: IfNotPresent
|
|
tag: 11.1.3@sha256:815054ad374640b998c48eb5023ae4522a1b1d39f2be4ba106ed4dced24bec00
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
MARIADB_PASSWORD:
|
|
secretKeyRef:
|
|
expandObjectName: "{{ if .Values.mariadbPassword }}true{{ else }}false{{ end }}"
|
|
name: '{{ if .Values.mariadbPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "mariadbcreds" }}{{ end }}'
|
|
key: "mariadb-password"
|
|
MARIADB_ROOT_PASSWORD:
|
|
secretKeyRef:
|
|
expandObjectName: "{{ if .Values.mariadbPassword }}true{{ else }}false{{ end }}"
|
|
name: '{{ if .Values.mariadbPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "mariadbcreds" }}{{ end }}'
|
|
key: "mariadb-root-password"
|
|
MARIADB_USER: "{{ .Values.mariadbUsername }}"
|
|
MARIADB_DATABASE: "{{ .Values.mariadbDatabase }}"
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: exec
|
|
command:
|
|
- /bin/bash
|
|
- -ec
|
|
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
|
|
readiness:
|
|
enabled: true
|
|
type: exec
|
|
command:
|
|
- /bin/bash
|
|
- -ec
|
|
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
|
|
startup:
|
|
enabled: true
|
|
type: exec
|
|
command:
|
|
- /bin/bash
|
|
- -ec
|
|
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 3306
|
|
targetPort: 3306
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
secret:
|
|
credentials:
|
|
enabled: true
|
|
data:
|
|
mariadb-password: '{{ ( .Values.mariadbPassword | default "empty" ) }}'
|
|
mariadb-root-password: '{{ ( .Values.mariadbRootPassword | default "empty" ) }}'
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/bitnami/mariadb"
|
|
mariadbUsername: "test"
|
|
mariadbDatabase: "test"
|
|
mariadbRootPassword: "testroot"
|
|
# -- Secret or password
|
|
# One of these options is required, unless used as a dependency for another TrueCharts chart.
|
|
mariadbPassword: ""
|
|
existingSecret: ""
|
|
portal:
|
|
open:
|
|
enabled: false
|
|
manifestManager:
|
|
enabled: false
|