2023-04-04 13:36:51 +00:00
|
|
|
# Name of group unifying git and runner.
|
|
|
|
git_runner_groupname="netoik-cicd-git-runner"
|
|
|
|
|
|
|
|
# Name of group unifying runner and deployer.
|
|
|
|
runner_deployer_groupname="netoik-cicd-runner-deployer"
|
|
|
|
|
|
|
|
# Name of the user responsible of the deployer server.
|
|
|
|
deployer_username="netoik-cicd-deployer"
|
|
|
|
|
|
|
|
# Location of unixsock file used to send requests to the deployer server.
|
|
|
|
deployer_sock="/run/netoik-cicd/deployer/deployer.sock"
|
|
|
|
|
2023-05-01 11:27:06 +00:00
|
|
|
# Location of deployer pid.
|
|
|
|
deployer_pid="/run/netoik-cicd/pids/deployer.pid"
|
|
|
|
|
2023-04-04 13:36:51 +00:00
|
|
|
# Maximum number of seconds to wait for deployer response.
|
|
|
|
# Set to 0 to disable timeout.
|
|
|
|
deployer_timeout=30
|
|
|
|
|
|
|
|
# Name of the user responsible of the runner server.
|
|
|
|
runner_username="netoik-cicd-runner"
|
|
|
|
|
|
|
|
# Location of unixsock file used to send requests to the runner server.
|
|
|
|
runner_sock="/run/netoik-cicd/runner/runner.sock"
|
|
|
|
|
|
|
|
# Directory in which to clone git repositories.
|
|
|
|
runner_cloning_dir="/var/tmp/netoik-cicd/repositories"
|
|
|
|
|
|
|
|
# Maximum number of seconds to wait for runner response.
|
|
|
|
# Set to 0 to disable timeout.
|
|
|
|
runner_timeout=120
|
|
|
|
|
|
|
|
# Directory in which to create pipeline sock files.
|
|
|
|
pipeline_sock_dir="/run/netoik-cicd/pipeline"
|
|
|
|
|
|
|
|
# Directory containing all the git repositories.
|
|
|
|
repos_dir="/var/gogs/repositories/samuel"
|
|
|
|
|
|
|
|
# Directory containing rpm packages.
|
2023-05-02 14:51:41 +00:00
|
|
|
rpms_dir="/home/netoik-cicd-runner/rpmbuild/RPMS"
|