-
Notifications
You must be signed in to change notification settings - Fork 1
/
2-local-disk-volumes-windows.yaml
80 lines (68 loc) · 1.48 KB
/
2-local-disk-volumes-windows.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
########################################################
# Local disk volume for windows host (testing purpose) #
########################################################
# Local disk volume for GridGain server node persistence
apiVersion: v1
kind: PersistentVolume
metadata:
name: ignite-storage
namespace: my-mule4-stack
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 2Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
hostPath:
path: "/c/opt/k8s/ignite-work"
type: DirectoryOrCreate
---
# Volume claim that can be used ONLY by one GridGain server node
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ignite-storage-claim
namespace: my-mule4-stack
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
---
# Local disk volume to share resources
apiVersion: v1
kind: PersistentVolume
metadata:
name: shared-storage
namespace: my-mule4-stack
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadOnlyMany
persistentVolumeReclaimPolicy: Retain
hostPath:
path: "/c/opt/k8s/shared"
type: Directory
---
# Volume claim that can be used by many applications
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: shared-storage-claim
namespace: my-mule4-stack
spec:
storageClassName: manual
accessModes:
- ReadOnlyMany
resources:
requests:
storage: 1Gi