-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql-deployment.yaml
70 lines (70 loc) · 1.43 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
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mysql-database-data-volume
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
io.kompose.service: mysql
name: mysql
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: mysql
strategy:
type: Recreate
template:
metadata:
labels:
io.kompose.service: mysql
spec:
containers:
- env:
- name: MYSQL_DATABASE
value: ordertaking
- name: MYSQL_PASSWORD
value: ordertaking_password
- name: MYSQL_ROOT_PASSWORD
value: password
- name: MYSQL_USER
value: ordertaking_user
image: mysql:5.7
args:
- "--ignore-db-dir=lost+found" # this is must
imagePullPolicy: ""
name: mysql
ports:
- containerPort: 3306
volumeMounts:
- mountPath: /var/lib/mysql
name: mysql-database-data-volume
restartPolicy: Always
serviceAccountName: ""
volumes:
- name: mysql-database-data-volume
persistentVolumeClaim:
claimName: mysql-database-data-volume
---
apiVersion: v1
kind: Service
metadata:
labels:
io.kompose.service: mysql
name: mysql
spec:
type: ClusterIP
ports:
- name: "3306"
port: 3306
targetPort: 3306
selector:
io.kompose.service: mysql