Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alternative silo limit #1025

Merged
merged 9 commits into from
Feb 13, 2024
4 changes: 3 additions & 1 deletion kubernetes/loculus/templates/lapis-silo-import-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ metadata:
name: lapis-silo-import-cronjob-{{ $key }}
spec:
schedule: "* * * * *"
startingDeadlineSeconds: 60
concurrencyPolicy: Forbid
jobTemplate:
spec:
activeDeadlineSeconds: {{ $.Values.siloImportLimitSeconds }}
template:
metadata:
labels:
Expand Down Expand Up @@ -73,5 +75,5 @@ spec:
- name: lapis-silo-input-data-cache
persistentVolumeClaim:
claimName: lapis-silo-input-data-cache-{{ $key }}
restartPolicy: OnFailure
restartPolicy: Never
{{- end }}
1 change: 1 addition & 0 deletions kubernetes/loculus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ environment: server
disableWebsite: false
disableBackend: false
disablePreprocessing: false
siloImportLimitSeconds: 3600
instances:
dummy-organism:
schema:
Expand Down
Loading