Skip to content

Commit 09a35f5

Browse files
author
Michael Buchar
committed
fix(helm): remove quota period anchor config
1 parent 670e348 commit 09a35f5

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

helm/reana/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ collisions.
207207
| `quota.default_cpu_limit` | Default users CPU quota limit in milliseconds. (0=unlimited) | 0 |
208208
| `quota.cpu_periodic_reset.enabled` | Enable deployment default periodic CPU quota for newly created users. | false |
209209
| `quota.cpu_periodic_reset.period_months` | Length of the CPU accounting window in months. | 3 |
210-
| `quota.cpu_periodic_reset.anchor_at` | Anchor datetime used to derive the active CPU accounting window. | `""` |
211210
| `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 |
212211
| `workspaces.retention_rules.cronjob_schedule` | Cron format string describing how often pending retention rules should be applied. | `"0 2 * * *"` |
213212
| `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 |

helm/reana/templates/reana-server.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ spec:
101101
value: {{ .Values.quota.cpu_periodic_reset.enabled | default false | quote }}
102102
- name: REANA_DEFAULT_QUOTA_CPU_PERIODIC_RESET_MONTHS
103103
value: {{ .Values.quota.cpu_periodic_reset.period_months | default 3 | quote }}
104-
- name: REANA_DEFAULT_QUOTA_CPU_PERIODIC_RESET_ANCHOR_AT
105-
value: {{ .Values.quota.cpu_periodic_reset.anchor_at | default "" | quote }}
106104
{{- if .Values.kubernetes_jobs_max_user_cpu_request }}
107105
- name: REANA_KUBERNETES_JOBS_MAX_USER_CPU_REQUEST
108106
value: {{ .Values.kubernetes_jobs_max_user_cpu_request | quote }}

helm/reana/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,8 @@ quota:
259259
cpu_periodic_reset:
260260
enabled: false
261261
period_months: 3
262-
anchor_at: ""
263262
# backward compatibility
264-
disk_update: "0 3 * * *" # everyday at 3am
263+
disk_update: "0 3 * * *" # every day at 3am
265264
termination_update_policy: ""
266265

267266
# OpenSearch chart values.yaml

0 commit comments

Comments
 (0)