-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ingest): Add slack_hook to ingest, send notification when reinge…
…st wants to change grouping and revoke old groups. (#2392) * Add slack_hook to ingest, send notification when reingest wants to change grouping and revoke old groups.
- Loading branch information
1 parent
7c41100
commit f6bc4a4
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl exec -it INGEST_POD_NAME -- snakemake regroup_and_revoke
does not actually work - first snakemake is located at /opt/conda/bin/snakemake. Second before running you need to stop the current snakemake rules, typically this would be by adding a .snakemake/.stopme file to the working directory but this doesn't work (you can add the file but snakemake doesn't stop). Also launching snakemake with exec doesn't work as snakemake can't find its dependencies, e.g./usr/bin/bash: line 2: python: command not found
Probably snakemake needs to be run in a specific way or there is another snakemake somewhere