mirror of
https://github.com/mariadb-operator/mariadb-operator.git
synced 2025-07-22 18:27:44 +00:00
49 lines
749 B
YAML
49 lines
749 B
YAML
apiVersion: mariadb.mmontes.io/v1alpha1
|
|
kind: MariaDB
|
|
metadata:
|
|
name: mariadb-from-backup
|
|
spec:
|
|
rootPasswordSecretKeyRef:
|
|
name: mariadb
|
|
key: root-password
|
|
|
|
database: mariadb
|
|
username: mariadb
|
|
passwordSecretKeyRef:
|
|
name: mariadb
|
|
key: password
|
|
|
|
image:
|
|
repository: mariadb
|
|
tag: "11.0.2"
|
|
pullPolicy: IfNotPresent
|
|
|
|
port: 3306
|
|
|
|
volumeClaimTemplate:
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
|
|
bootstrapFrom:
|
|
backupRef:
|
|
name: backup-scheduled
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 300m
|
|
memory: 512Mi
|
|
|
|
env:
|
|
- name: TZ
|
|
value: SYSTEM
|
|
|
|
envFrom:
|
|
- configMapRef:
|
|
name: mariadb
|