-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmysql-deployment.yaml
56 lines (56 loc) · 1.16 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
apiVersion: v1
kind: Service
metadata:
name: mysql
spec:
selector:
app: webapp-sql
tier: backend
ports:
- protocol: "TCP"
port: 3306
targetPort: 3306
clusterIP: None
---
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
kind: Deployment
metadata:
name: sqldb
labels:
app: webapp-sql
tier: backend
spec:
selector:
matchLabels:
app: webapp-sql
tier: backend
strategy:
type: Recreate
template:
metadata:
labels:
app: webapp-sql
tier: backend
spec:
containers:
- image: mysql
name: mysql
env:
- name: MYSQL_ROOT_PASSWORD
value: password
- name: MYSQL_DATABASE
value: chat
- name: MYSQL_USER
value: db_user
- name: MYSQL_PASSWORD
value: password
args: ["--default-authentication-plugin=mysql_native_password"]
ports:
- containerPort: 3306
volumeMounts:
- name: mysql-persistent-storage
mountPath: /var/lib/mysql
volumes:
- name: mysql-persistent-storage
persistentVolumeClaim:
claimName: mysql-pv-claim