forked from broadinstitute/cromwell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTES.conf
33 lines (30 loc) · 1.1 KB
/
TES.conf
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
# This is an example of how you can use the TES backend provider.
# *This is not a complete configuration file!* The
# content here should be copy pasted to the backend -> providers section
# of cromwell.example.backends/cromwell.examples.conf in the root of the repository.
# You should uncomment lines that you want to define, and read carefully to customize
# the file. If you have any questions, please open an issue at
# https://www.github.com/broadinstitute/cromwell/issues
# Documentation:
# https://cromwell.readthedocs.io/en/stable/backends/TES/
# If you are interested in using TES with kubernetes, see TESK.conf
backend {
default = TES
providers {
TES {
actor-factory = "cromwell.backend.impl.tes.TesBackendLifecycleActorFactory"
config {
root = "cromwell-executions"
dockerRoot = "/cromwell-executions"
endpoint = "http://127.0.0.1:9000/v1/tasks"
default-runtime-attributes {
cpu: 1
failOnStderr: false
continueOnReturnCode: 0
memory: "2 GB"
disk: "2 GB"
preemptible: false
}
}
}
}