-
Notifications
You must be signed in to change notification settings - Fork 8
/
values.yaml
348 lines (283 loc) · 12.1 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
## -------------------------------------------------------------------------------
## PECAN COMMON VARIABLES
## -------------------------------------------------------------------------------
image:
project: pecan
tag: null
checks: "ncsa/checks:1.0.1"
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
## -------------------------------------------------------------------------------
## CLUSTER CONFIGURATION
## -------------------------------------------------------------------------------
## clustername is set to the short name that is shown in the pull down menu
clustername: demo
## clusterfqdn is set to the name that is stored in the machines table. This
## should be a Fully Qualified Domain Name. Probably want to add this to:
## betydb.ingress.hosts and ingress.hosts.
clusterfqdn: pecan.localhost
## initializeData should be set to true to load demo data.
initializeData: true
## rstudioUsers is set to a list of rstudio users, each with their own instance
## of rstudio. If not set no instance of rstudio is created. The list will need
## 2 parameters, username and password.
rstudioUsers: []
# - username: carya
# password: illinois
## -------------------------------------------------------------------------------
## PECAN MODELS
## -------------------------------------------------------------------------------
## list of models to be installed. Each model should have the following fields:
## enabled : true/false - should the extractor be installed
## project : the project (or server) where the image is stored, if this is
## not specified it will use the same as image.project
## image : docker/image:tag - the extractor docker image
## tag. : the tagof the image to be used, if this is not specified it
## will use the same as image.tag
## replicaCount : number - the number of this extractor to install
## env : additional environment variables to pass to extractor.
## you can also specify resources, nodeSelector, affinity and tolerations.
##
## the image that is pulled will be create based on project/image:tag.
models:
biocro-0-95:
enabled: true
image: model-biocro-0.95
replicaCount: 1
ed2-2-2-0:
enabled: true
image: model-ed2-2.2.0
replicaCount: 1
maespa-git:
enabled: true
image: model-maespa-git
replicaCount: 1
sipnet-git:
enabled: true
image: model-sipnet-git
replicaCount: 1
sipnet-136:
enabled: true
image: model-sipnet-r136
replicaCount: 1
## -------------------------------------------------------------------------------
## BETYDB APPLICATION
## -------------------------------------------------------------------------------
betydb:
ingress:
## should ingress rules be enabled (betydb is set below, monitor is set below)
## best set to the same value as PEcAn.
enabled: false
## hostName used for the ingress rules (betydb is set below), best set to the
## same value as PEcAn.
hosts:
- pecan.localhost
## path prefix for all applications (betydb is set below)
path: /bety/
## -------------------------------------------------------------------------------
## RABBITMQ APPLICATION
## -------------------------------------------------------------------------------
rabbitmq:
rabbitmq:
username: guest
password: guest
erlangCookie: 1234thisisasupersecretoflength32
ingress:
enabled: false
hostName: rabbitmq.localhost
path: /
## -------------------------------------------------------------------------------
## INGRESS RULES
## -------------------------------------------------------------------------------
## Configure the ingress resource that allows you to access the
## PECAN installation.
## ref: http://kubernetes.io/docs/user-guide/ingress/
ingress:
# add ingress routes
enabled: false
# this should probably also contain clusterfqdn
hosts:
- pecan.localhost
## path prefix for all applications (betydb is set below)
path: /
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
## Ingress annotations done as key:value pairs
## If you're using kube-lego, you will want to add:
## kubernetes.io/tls-acme: true
##
## For a full list of possible ingress annotations, please see
## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/annotations.md
##
## If tls is set to true, annotation ingress.kubernetes.io/secure-backends: "true" will automatically be set
annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: true
## -------------------------------------------------------------------------------
## PECAN DOCUMENTATION
## -------------------------------------------------------------------------------
docs:
## replicaCount is the number of instances that should be running.
replicaCount: 1
## service options
service:
## ServiceType
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
type: ClusterIP
## port the service is listening on
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service
port: 8000
## Resources
## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
resources: {}
## Support Node, affinity and tolerations for flower pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
affinity: {}
tolerations: []
## -------------------------------------------------------------------------------
## PECAN WEB APP
## -------------------------------------------------------------------------------
web:
## replicaCount is the number of instances that should be running.
replicaCount: 1
## service options
service:
## ServiceType
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
type: ClusterIP
## port the service is listening on
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service
port: 8888
## Resources
## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
resources: {}
## Support Node, affinity and tolerations for flower pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
affinity: {}
tolerations: []
## -------------------------------------------------------------------------------
## PECAN EXECUTOR
## -------------------------------------------------------------------------------
executor:
## replicaCount is the number of instances that should be running.
replicaCount: 1
## Resources
## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
resources: {}
## Support Node, affinity and tolerations for flower pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
affinity: {}
tolerations: []
## -------------------------------------------------------------------------------
## PECAN MODEL MONITOR
## -------------------------------------------------------------------------------
monitor:
## service options
service:
## ServiceType
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
type: ClusterIP
## port the service is listening on
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service
port: 9999
## Resources
## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
resources: {}
## Support Node, affinity and tolerations for flower pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
affinity: {}
tolerations: []
## -------------------------------------------------------------------------------
## PECAN RSTUDIO
## -------------------------------------------------------------------------------
rstudio:
## path is the path that is used when the ingress route is to be exposed
## in case of multiple rstudio this is the prefix of rstudio
path: /rstudio/
## service options
service:
## ServiceType
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
type: ClusterIP
## port the service is listening on
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service
port: 8787
## Resources
## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
resources: {}
## Support Node, affinity and tolerations for flower pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
affinity: {}
tolerations: []
## -------------------------------------------------------------------------------
## PECAN APPLICATION DATA
## -------------------------------------------------------------------------------
## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
persistence:
## A manually managed Persistent Volume and Claim
## If defined, PVC must be created manually before volume will be bound
##
#existingClaim: pecan-data
## The path the volume will be mounted at, useful when using different
## PostgreSQL images.
##
mountPath: /data
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
#storageClass: "-"
## sisze of the storage class
size: 20Gi
## Annotations
annotations: {}
# -------------------------------------------------------------------------------
service:
type: ClusterIP
# -------------------------------------------------------------------------------
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
## Node selector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
nodeSelector: {}
## Tolerations
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
## Affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
affinity: {}
## Hook Affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
hooks:
affinity: {}