Skip to content

Commit

Permalink
feat(config): add compute4punch backend (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
giffels authored and mdonadoni committed Jul 4, 2024
1 parent 1479730 commit 41792fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reana/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
WORKFLOW_ENGINE_LIST_ALL = ["cwl", "serial", "yadage", "snakemake"]
"""List of supported workflow engines."""

COMPUTE_BACKEND_LIST_ALL = ["kubernetes", "htcondorcern", "slurmcern"]
COMPUTE_BACKEND_LIST_ALL = ["kubernetes", "htcondorcern", "slurmcern", "compute4punch"]
"""List of supported compute backends."""

CLUSTER_DEPLOYMENT_MODES = ["releasehelm", "releasepypi", "latest", "debug"]
Expand Down
4 changes: 2 additions & 2 deletions reana/reana_dev/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def add_volume_mounts(node):
"--build-arg",
"-b",
multiple=True,
help="Any build arguments? (e.g. `-b COMPUTE_BACKENDS=kubernetes,htcondorcern,slurmcern`)",
help="Any build arguments? (e.g. `-b COMPUTE_BACKENDS=kubernetes,htcondorcern,slurmcern,compute4punch`)",
)
@click.option(
"--mode",
Expand Down Expand Up @@ -214,7 +214,7 @@ def cluster_build(
\b
Example:
$ reana-dev cluster-build --exclude-components=r-ui,r-a-vomsproxy
-b COMPUTE_BACKENDS=kubernetes,htcondorcern,slurmcern
-b COMPUTE_BACKENDS=kubernetes,htcondorcern,slurmcern,compute4punch
--mode debug
--no-cache
"""
Expand Down

0 comments on commit 41792fe

Please sign in to comment.