-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql-deployment.yaml
75 lines (75 loc) · 1.49 KB
/
mysql-deployment.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
72
73
74
75
apiVersion: v1
kind: Service
metadata:
labels:
app: etsi-iot-week-mysql
name: mysql
spec:
ports:
- name: "3306"
port: 3306
targetPort: 3306
selector:
app: etsi-iot-week-mysql
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app: etsi-iot-week-mysql
name: mysql-pv-claim
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
storageClassName: cinder-high-speed
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: etsi-iot-week-mysql
name: mysql
spec:
selector:
matchLabels:
app: etsi-iot-week-mysql
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
app: etsi-iot-week-mysql
spec:
containers:
- image: mysql
name: mysql
args:
- --default-authentication-plugin=mysql_native_password
env:
- name: MYSQL_DATABASE
value: mobiusdb
- name: MYSQL_ROOT_PASSWORD
valueFrom:
secretKeyRef:
name: mysql-pass
key: password
ports:
- containerPort: 3306
name: mysql
volumeMounts:
- mountPath: /var/lib/mysql
name: mysql-pv
- mountPath: /docker-entrypoint-initdb.d
name: mysql-initdb
restartPolicy: Always
volumes:
- name: mysql-pv
persistentVolumeClaim:
claimName: mysql-pv-claim
- name: mysql-initdb
configMap:
name: mysql-init-db