Skip to content

Commit

Permalink
feat(config): allow customisation of runtime group name (reanahub#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Feb 12, 2024
1 parent 36ce4e0 commit 13f7c8b
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")
"""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 13f7c8b

Please sign in to comment.