-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcka2.yaml
68 lines (62 loc) · 1.1 KB
/
cka2.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
apiVersion: v1
kind: PersistentVolume
metadata:
name: data-pv
namespace: web
spec:
storageClassName: local-storage
capacity:
storage: 100Mi
accessModes:
- ReadWriteOnce
hostPath:
path: /mnt/data2
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: data-pvc
namespace: web
spec:
storageClassName: local-storage
resources:
requests:
storage: 100Mi
accessModes:
- ReadWriteOnce
---
apiVersion: v1
kind: Pod
metadata:
name: data-pod
namespace: web
spec:
containers:
- name: pod1
image: busybox:1.28
args: ['sh','-c',"echo $(date) > /tmp/data/1.log && sleep 3600"]
volumeMounts:
- name: temp-data
mountPath: /tmp/data
volumes:
- name: temp-data
persistentVolumeClaim:
claimName: data-pvc
---
apiVersion: v1
kind: Pod
metadata:
name: data-pod-2
namespace: web
spec:
containers:
- name: pod2
image: busybox:1.28
args: ['sh','-c',"echo $(date) && sleep 3600"]
volumeMounts:
- name: temp-data
mountPath: /tmp/data
volumes:
- name: temp-data
persistentVolumeClaim:
claimName: data-pvc