File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
manifests/opendatahub/overlays/metadata-store-mariadb Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -3,25 +3,25 @@ apiVersion: apps/v1
3
3
kind : Deployment
4
4
metadata :
5
5
labels :
6
- app : mysql
6
+ app : mariadb
7
7
application-crd-id : kubeflow-pipelines
8
- name : mysql
8
+ name : mariadb
9
9
spec :
10
10
replicas : 1
11
11
strategy :
12
12
type : Recreate # Need this since backing PVC is ReadWriteOnce, which creates resource lock condition in default Rolling strategy
13
13
selector :
14
14
matchLabels :
15
- app : mysql
15
+ app : mariadb
16
16
application-crd-id : kubeflow-pipelines
17
17
template :
18
18
metadata :
19
19
labels :
20
- app : mysql
20
+ app : mariadb
21
21
application-crd-id : kubeflow-pipelines
22
22
spec :
23
23
containers :
24
- - name : mysql
24
+ - name : mariadb
25
25
image : mysql
26
26
ports :
27
27
- containerPort : 3306
73
73
cpu : 500m
74
74
memory : 1Gi
75
75
volumeMounts :
76
- - name : mysql -persistent-storage
76
+ - name : mariadb -persistent-storage
77
77
mountPath : /var/lib/mysql
78
78
volumes :
79
- - name : mysql -persistent-storage
79
+ - name : mariadb -persistent-storage
80
80
persistentVolumeClaim :
81
- claimName : mysql -pv-claim
81
+ claimName : mariadb -pv-claim
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ resources:
13
13
- ./secrets/mysql-secret.yaml
14
14
15
15
# PersistentVolumeClaims
16
- - ./persistentvolumeclaims/mysql -pv-claim.yaml
16
+ - ./persistentvolumeclaims/mariadb -pv-claim.yaml
17
17
18
18
# Deployments
19
19
- ./deployments/mariadb.yaml
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PersistentVolumeClaim
3
3
metadata :
4
4
labels :
5
5
application-crd-id : kubeflow-pipelines
6
- name : mysql -pv-claim
6
+ name : mariadb -pv-claim
7
7
spec :
8
8
accessModes :
9
9
- ReadWriteOnce
Original file line number Diff line number Diff line change 10
10
protocol : TCP
11
11
targetPort : 3306
12
12
selector :
13
- app : mysql
13
+ app : mariadb
14
14
application-crd-id : kubeflow-pipelines
You can’t perform that action at this time.
0 commit comments