-
Notifications
You must be signed in to change notification settings - Fork 0
/
pvc.yaml
47 lines (45 loc) · 830 Bytes
/
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
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: gitlab-config-claim
namespace: gitlab
annotations:
nfs.io/storage-path: "gitlab-config"
spec:
storageClassName: nfs-client
accessModes:
- ReadWriteMany
resources:
requests:
storage: 200Mi
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: gitlab-logs-claim
namespace: gitlab
annotations:
nfs.io/storage-path: "gitlab-logs"
spec:
storageClassName: nfs-client
accessModes:
- ReadWriteMany
resources:
requests:
storage: 1G
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: gitlab-data-claim
namespace: gitlab
annotations:
nfs.io/storage-path: "gitlab-data"
spec:
storageClassName: nfs-client
accessModes:
- ReadWriteMany
resources:
requests:
storage: 3G