Skip to content

Commit

Permalink
Change default user to runner
Browse files Browse the repository at this point in the history
  • Loading branch information
efrecon committed Feb 13, 2024
1 parent 332856d commit f36c86a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions orchestrator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ RUNNER_GROUP=${RUNNER_GROUP:-"Default"}
# Comma separated list of labels to attach to the runner (good defaults will be used if empty)
RUNNER_LABELS=${RUNNER_LABELS:-""}

# Name of the user to run the runner as, defaults to root. User must exist.
RUNNER_USER=${RUNNER_USER:-"root"}
# Name of the user to run the runner as, defaults to runner. User must exist.
RUNNER_USER=${RUNNER_USER:-"runner"}

# Scope of the runner, one of: repo, org or enterprise
RUNNER_SCOPE=${RUNNER_SCOPE:-"repo"}
Expand Down
2 changes: 1 addition & 1 deletion runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUNNER_GROUP=${RUNNER_GROUP:-"Default"}
RUNNER_LABELS=${RUNNER_LABELS:-""}

# Name of the user to run the runner as, defaults to root. User must exist.
RUNNER_USER=${RUNNER_USER:-"root"}
RUNNER_USER=${RUNNER_USER:-"runner"}

# Scope of the runner, one of: repo, org or enterprise
RUNNER_SCOPE=${RUNNER_SCOPE:-"repo"}
Expand Down
2 changes: 1 addition & 1 deletion runner/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUNNER_GROUP=${RUNNER_GROUP:-"Default"}
RUNNER_LABELS=${RUNNER_LABELS:-""}

# Name of the user to run the runner as, defaults to root. User must exist.
RUNNER_USER=${RUNNER_USER:-"root"}
RUNNER_USER=${RUNNER_USER:-"runner"}

# Scope of the runner, one of: repo, org or enterprise
RUNNER_SCOPE=${RUNNER_SCOPE:-"repo"}
Expand Down

0 comments on commit f36c86a

Please sign in to comment.