Skip to content

Commit

Permalink
feat(config): allow customisation of runtime group name (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Feb 2, 2024
1 parent 20ae9ce commit f643a81
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions reana_commons/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ def kubernetes_node_label_to_dict(node_label):
WORKFLOW_RUNTIME_USER_NAME = os.getenv("WORKFLOW_RUNTIME_USER_NAME", "reana")
"""Default OS user name for running job controller."""

WORKFLOW_RUNTIME_GROUP_NAME = os.getenv("WORKFLOW_RUNTIME_GROUP_NAME", "reana")

Check warning on line 306 in reana_commons/config.py

View check run for this annotation

Codecov / codecov/patch

reana_commons/config.py#L306

Added line #L306 was not covered by tests
"""Default OS group name for running job controller."""

WORKFLOW_RUNTIME_USER_UID = os.getenv("WORKFLOW_RUNTIME_USER_UID", 1000)
"""Default user id for running job controller/workflow engine apps & jobs."""

Expand Down

0 comments on commit f643a81

Please sign in to comment.