We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fdf2da commit 7477ae7Copy full SHA for 7477ae7
1 file changed
src/managing-workflow/tuning-component-settings.md
@@ -19,6 +19,23 @@ env:
19
value: "admin_only"
20
```
21
22
+## Setting Resource limits
23
+
24
+You can set resource limits to Workflow components by modifying the template file `tpl/generate_params.toml`.
25
+This file has a section for each Workflow component. To set a limit to any Workflow component just add `limits_cpu`, `limits_memory`
26
+in the section and set them to the appropriate values.
27
28
+Below is an example of how the builder section of `tpl/generate_params.toml` might look with CPU and memory limits set:
29
30
+```
31
+[builder]
32
+org = "deisci"
33
+pullPolicy = "Always"
34
+dockerTag = "canary"
35
+limits_cpu = "100m"
36
+limits_memory = "50Mi"
37
38
39
## Customizing the Builder
40
41
The following environment variables are tunable for the [Builder][] component:
0 commit comments