-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfitcycle-percona-dcnf.yaml
50 lines (49 loc) · 1.16 KB
/
fitcycle-percona-dcnf.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
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
replicas: 1
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
- mountPath: /etc/mysql/conf.d
name: mysql-cnf-config
volumes:
- name: fitcycle-persistent-storage
persistentVolumeClaim:
claimName: fc-mysql-pv-claim
- name: mysql-initdb
configMap:
name: mysql-initdb-config
- name: mysql-cnf-config
configMap:
name: mysql-cnf-config