-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvalues.yaml
59 lines (57 loc) · 1.53 KB
/
values.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
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/common-3.4.0/charts/library/common/values.schema.json
app-template:
controllers:
# Configure the main controller
main:
type: statefulset
annotations:
reloader.stakater.com/auto: "true"
containers:
# Configure the main application container
main:
image:
repository: ghcr.io/obeone/nfs-server
tag: v2.2.3
env:
TZ: Europe/Paris
NFS_EXPORT_0: "/elements *(rw,async,no_subtree_check)"
NFS_DISABLE_VERSION_3: "true"
NFS_LOG_LEVEL: DEBUG
securityContext:
privileged: true
capabilities:
add: ["SYS_ADMIN"]
ports:
- name: nfs
containerPort: 2049
probes:
liveness:
enabled: true
custom: true
spec:
tcpSocket:
port: 2049
readiness:
enabled: true
custom: true
spec:
tcpSocket:
port: 2049
service:
# Configure a service for the main application
main:
controller: main
type: ClusterIP
clusterIP: 10.100.10.21
ports:
nfs:
port: 2049
persistence:
data:
enabled: true
type: persistentVolumeClaim
accessMode: ReadWriteOnce
size: 900Gi
storageClass: "-"
globalMounts:
- path: /elements