-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfitcycle-percona-total.yaml
71 lines (71 loc) · 1.4 KB
/
fitcycle-percona-total.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
apiVersion: v1
kind: Service
metadata:
name: fitcycle-mysql
labels:
app: fitcycle
spec:
ports:
- port: 3306
name: http-fc-db
selector:
app: fitcycle
tier: db
clusterIP: None
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: fc-mysql-pv-claim
labels:
app: fitcycle
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 20Gi
---
apiVersion: apps/v1beta1 # for versions before 1.8.0 use apps/v1beta1
kind: Deployment
metadata:
name: fitcycle-mysql
labels:
app: fitcycle
spec:
selector:
matchLabels:
app: fitcycle
tier: db
strategy:
type: Recreate
template:
metadata:
labels:
app: fitcycle
tier: db
spec:
containers:
- image: percona:5.6
name: fc-mysql
env:
- name: MYSQL_ROOT_PASSWORD
valueFrom:
secretKeyRef:
name: mysql-pass
key: password
ports:
- containerPort: 3306
name: fc-mysql
volumeMounts:
- mountPath: /var/lib/mysql
name: fitcycle-persistent-storage
- mountPath: /docker-entrypoint-initdb.d
name: mysql-initdb
volumes:
- name: fitcycle-persistent-storage
persistentVolumeClaim:
claimName: fc-mysql-pv-claim
- name: mysql-initdb
configMap:
name: mysql-initdb-config