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

Update config, remove deployment, add revoke cronjob #2473

Merged
merged 19 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ingest/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,8 @@ rule approve:
log_level=LOG_LEVEL,
shell:
"""
python {input.script} \
timeout 25m bash -c "python {input.script} \
corneliusroemer marked this conversation as resolved.
Show resolved Hide resolved
--mode approve \
--config-file {input.config} \
--log-level {params.log_level} \
--log-level {params.log_level}" \
"""
11 changes: 6 additions & 5 deletions kubernetes/loculus/templates/ingest-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,12 @@ spec:
name: service-accounts
key: insdcIngestUserPassword
args:
- timeout
- 25m
- bash
- -c
- "snakemake results/submitted results/revised results/revoked results/approved --all-temp" # Reduce disk usage by not keeping files around
- snakemake
- results/submitted
- results/revised
- results/revoked
- results/approved
- --all-temp # Reduce disk usage by not keeping files around
{{- if $value.ingest.configFile }}
volumeMounts:
- name: loculus-ingest-config-volume-{{ $key }}
Expand Down
Loading