This PR contains the following updates: | Package | Update | Change | |---|---|---| | [tccr.io/truecharts/mariadb](https://togithub.com/truecharts/containers) | digest | `fc01102` -> `8d7fb27` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please 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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS42MS4wIiwidXBkYXRlZEluVmVyIjoiMzUuNjEuMCJ9--> --------- Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
86 lines
2.6 KiB
YAML
86 lines
2.6 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/mariadb
|
|
pullPolicy: IfNotPresent
|
|
tag: 10.11.2@sha256:8d7fb27800ae935b6f26af0130bcef0a6a03d80d8c47b3fc8ea58a66d5ddebb8
|
|
|
|
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
|