-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpod-pvc.yaml
56 lines (56 loc) · 1005 Bytes
/
pod-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
# Create Namespace
apiVersion: v1
kind: Namespace
metadata:
name: pod-pvc-namespace
---
# Create PV
apiVersion: v1
kind: PersistentVolume
metadata:
name: app-storage
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"
---
# Create PVC
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nginx-app-claim
namespace: pod-pvc-namespace
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 500M
---
# Create Nginx App Pod
apiVersion: v1
kind: Pod
metadata:
name: nginx-app
namespace: pod-pvc-namespace
spec:
containers:
- name: app
image: nginx
ports:
- containerPort: 80
name: "http-server"
volumeMounts:
- mountPath: "/usr/share/nginx/html"
name: nginx-app-volume
volumes:
- name: nginx-app-volume
persistentVolumeClaim:
claimName: nginx-app-claim