-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment-pvc.yaml
82 lines (82 loc) · 1.55 KB
/
deployment-pvc.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
76
77
78
79
80
81
82
# Create Namespace
apiVersion: v1
kind: Namespace
metadata:
name: deployment-pvc-namespace
---
# Create PV
apiVersion: v1
kind: PersistentVolume
metadata:
name: deploy-app-storage
spec:
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"
---
# Create PVC
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nginx-app-claim
namespace: deployment-pvc-namespace
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 500M
---
# Create Service
apiVersion: v1
kind: Service
metadata:
name: nginx-app-service
namespace: deployment-pvc-namespace
spec:
selector:
app-name: nginx-app
ports:
- name: server
port: 8080
targetPort: 8080
protocol: TCP
---
# Create Deployment with 2 Replicas Pod having PVC
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-app-deployment
namespace: deployment-pvc-namespace
labels:
app-name: nginx-app
spec:
replicas: 2
selector:
matchLabels:
app-name: nginx-app
strategy:
type: Recreate
template:
metadata:
labels:
app-name: nginx-app
spec:
containers:
- name: app
image: nginx
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
volumeMounts:
- name: nginx-app-volume
mountPath: "/usr/share/nginx/html"
volumes:
- name: nginx-app-volume
persistentVolumeClaim:
claimName: nginx-app-claim