File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -7,20 +7,14 @@ metadata:
7
7
# do not allow ArgoCD to delete our DB
8
8
argocd.argoproj.io/sync-options: Delete=false
9
9
spec:
10
- rootPasswordSecretKeyRef:
11
- name: mariadb
12
- key: root-password
13
- generate: true
10
+ rootPasswordSecretKeyRef: { { .Values.mariadb.rootPasswordSecretKeyRef | toJson } }
14
11
15
12
# renovate: datasource=docker
16
13
image: docker-registry1.mariadb.com/library/mariadb:11.4.4
17
14
imagePullPolicy: IfNotPresent
18
15
19
16
port: 3306
20
- storage:
21
- size: 10Gi
22
- resizeInUseVolumes: true
23
- waitForVolumeResize: true
17
+ storage: { { .Values.mariadb.storage | toJson } }
24
18
25
19
service:
26
20
type: ClusterIP
Original file line number Diff line number Diff line change 1
1
---
2
2
3
+ # -- OpenStack mariadb instance settings
4
+ mariadb :
5
+ # -- root password settings
6
+ rootPasswordSecretKeyRef :
7
+ name : mariadb
8
+ key : root-password
9
+ generate : true
10
+
11
+ # -- storage settings
12
+ storage :
13
+ size : 10Gi
14
+ resizeInUseVolumes : true
15
+ waitForVolumeResize : true
16
+
3
17
# -- Array of extra Kubernetes manifests to deploy
4
18
extraObjects : []
5
19
# - apiVersion: external-secrets.io/v1beta1
You can’t perform that action at this time.
0 commit comments