-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues.yaml
127 lines (110 loc) · 3.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
image:
# -- repository with jdownloader2 image
repository: jlesage/jdownloader-2
# -- current version of the image
tag:
# -- pull policy
pullPolicy: Always
myjd:
# -- (string) if "service.myjd" is enabled, the email address of the myJdownloader account is required
email: ""
# -- (string) if "service.myjd" is enabled, the password of the myJdownloader account is required
password: ""
# -- use existing myjd secret (its data has to contains the keys: "email" and "password")
existingSecretName: ""
persistence:
# -- enable persistence when true
enabled: false
# -- default storage size
size: 20Gi
# -- accessMode
accessMode: ReadWriteOnce
# -- actual storageClass
storageClass: ""
# -- use an existing claim
existingClaim: ""
# -- imagePullSecrets (not needed, if default image is used)
imagePullSecrets: []
# -- @ignore
nameOverride: ""
# -- @ignore
fullnameOverride: ""
serviceAccount:
# -- enable serviceAccount
create: true
# -- add annotations to serviceAccount
annotations: {}
# -- name of the serviceAccount (will be generated if empty)
name: ""
# -- @ignore
podAnnotations: {}
# -- @ignore
podSecurityContext: {}
# fsGroup: 2000
# -- @ignore
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
# -- enable the web interface (via browser)
web:
# -- enable "web" service
enabled: true
# -- exposed port of the service
port: 5800
# -- service type (only used when ingress.enabled: false)
type: LoadBalancer
# -- enable VNC connection (via VNC client)
vnc:
# -- enable "VNC" service
enabled: false
# -- exposed port of the service
port: 5900
# -- enable my.jdownloader.org remote connection
myjd:
# -- enable "myJD" service
enabled: false
# -- exposed port of the service
port: 3129
# -- Configure ingress for the "web" service. Only considered, if "service.web" is enabled
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# -- @ignore
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# -- @ignore
nodeSelector: {}
# -- @ignore
tolerations: []
# -- @ignore
affinity: {}
# -- additional volume(s) to mount into the container
additionalVolumes: []
# -- mountpoint(s) of the additional volumes inside the container
additionalVolumeMounts: []