-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstorage-nfs.yml
54 lines (54 loc) · 1.19 KB
/
storage-nfs.yml
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
# https://github.com/sjiveson/nfs-server-alpine
apiVersion: apps/v1
kind: Deployment
metadata:
name: nfs-server
namespace: asreview-cloud
spec:
selector:
matchLabels:
app: nfs-server
template:
metadata:
labels:
app: nfs-server
spec:
containers:
- name: nfs-server
image: itsthenetwork/nfs-server-alpine:12
ports:
- name: nfs
containerPort: 2049
- name: mountd
containerPort: 20048
- name: rpcbind
containerPort: 111
securityContext:
privileged: true
volumeMounts:
- name: storage
mountPath: /asreview-storage
env:
- name: SHARED_DIRECTORY
value: "/asreview-storage"
volumes:
- name: storage
hostPath:
path: /data/nfs
type: DirectoryOrCreate
---
apiVersion: v1
kind: Service
metadata:
name: nfs-service
namespace: asreview-cloud
spec:
ports:
- name: nfs
port: 2049
- name: mountd
port: 20048
- name: rpcbind
port: 111
selector:
app: nfs-server # must match with the label of NFS pod