forked from darcys22/godbledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s.03.mysql.yml
67 lines (67 loc) · 1.34 KB
/
k8s.03.mysql.yml
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
# apt update
# apt-get update
# apt install net-tools
---
apiVersion: v1
kind: Service
metadata:
name: mysql
namespace: godbledger
labels:
name: mysql
spec:
type: NodePort
ports:
- port: 3306
targetPort: 3306
nodePort: 30036
name: mysql
selector:
app: mysql
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mysql
spec:
selector:
matchLabels:
app: mysql
strategy:
type: Recreate
template:
metadata:
labels:
app: mysql
spec:
containers:
- image: mysql:5.6
name: mysql
env:
- name: MYSQL_ROOT_PASSWORD
valueFrom:
secretKeyRef:
name: mysql-creds
key: root_password
- name: MYSQL_DATABASE
value: ledger
- name: MYSQL_USER
valueFrom:
secretKeyRef:
name: mysql-creds
key: godbledger_user
- name: MYSQL_PASSWORD
valueFrom:
secretKeyRef:
name: mysql-creds
key: godbledger_pass
ports:
- containerPort: 3306
name: mysql
volumeMounts:
- name: mysql-persistent-storage
mountPath: /var/lib/mysql
volumes:
- name: mysql-persistent-storage
persistentVolumeClaim:
claimName: mysql-pv-claim