From e240f3e98585ee4d6f8d007ef3eaf4aa1b0bb8be Mon Sep 17 00:00:00 2001 From: Daan Eduard Rosendal Date: Tue, 26 Sep 2023 12:22:06 +0200 Subject: [PATCH] helm: add quota limit 0 = unlimited to README Closes reanahub/reana-server#625 --- AUTHORS.rst | 1 + helm/reana/README.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index f04d1850..4cbd8772 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,6 +7,7 @@ The list of contributors in alphabetical order: - `Anton Khodak `_ - `Audrius Mecionis `_ - `Camila Diaz `_ +- `Daan Rosendal `_ - `Dan Leehr `_ - `Daniel Prelipcean `_ - `Diego Rodriguez `_ diff --git a/helm/reana/README.md b/helm/reana/README.md index 7771e717..75ea5967 100644 --- a/helm/reana/README.md +++ b/helm/reana/README.md @@ -122,8 +122,8 @@ This Helm automatically prefixes all names using the release name to avoid colli | `quota.enabled` | Enable user workflow accounting capabilities. | true | | `quota.periodic_update_policy` | Cronjob pattern representing how often the users Disk and CPU quota usage should be updated. Leave it empty to deactivate it | "0 3 * * *" | | `quota.workflow_termination_update_policy` | Resources to calculate quotas on worflow termination. Possible values: "cpu" and "disk". Leave it empty to deactivate workflow termination accounting. | "" | -| `quota.default_disk_limit` | Default users disk quota limit in bytes. | None | -| `quota.default_cpu_limit` | Default users CPU quota limit in milliseconds. | None | +| `quota.default_disk_limit` | Default users disk quota limit in bytes. (0=unlimited) | 0 | +| `quota.default_cpu_limit` | Default users CPU quota limit in milliseconds. (0=unlimited) | 0 | | `workspaces.retention_rules.maximum_period` | Set a default period in days for workspace retention rules. Users will not be able to specify a longer period to retain the workspace files. After this period the workspace will be cleared. To disable the period and allow files to be kept forever, use value "forever". | forever | | `workspaces.retention_rules.cronjob_schedule` | Cron format string describing how often pending retention rules should be applied. | "0 2 * * *" | | `workspaces.paths` | List of additional workspace paths as strings. Each mount string is composed by a key `hostPath`(path to the directory to be mounted from the Kubernetes nodes) and a cluster_pod_mountpath (path inside the cluster containers where the `mountPath` will be mounted) e.g. `hostPath:mountPath`. The first value listed will be the default workspace root path. Any POSIX filesystem mounted on cluster nodes is supported | None |