Anthony Wang
023d679d67
git-subtree-dir: woodpecker-agent-sudo git-subtree-mainline:996cb8e076
git-subtree-split:022837448e
59 lines
1.7 KiB
Bash
59 lines
1.7 KiB
Bash
# Configures gRPC address of the server.
|
|
# Default: localhost:9000
|
|
#WOODPECKER_SERVER=
|
|
|
|
# The gRPC username.
|
|
# Default: x-oauth-basic
|
|
#WOODPECKER_USERNAME=
|
|
|
|
# A shared secret used by server and agents to authenticate communication. A secret can be generated by openssl rand -hex 32.
|
|
# Default: empty
|
|
#WOODPECKER_AGENT_SECRET=
|
|
|
|
# Configures the logging level. Possible values are trace, debug, info, warn, error, fatal, panic, disabled and empty.
|
|
# Default: empty
|
|
#WOODPECKER_LOG_LEVEL=
|
|
|
|
# Enable pretty-printed debug output.
|
|
# Default: false
|
|
#WOODPECKER_DEBUG_PRETTY=
|
|
|
|
# Disable colored debug output.
|
|
# Default: true
|
|
#WOODPECKER_DEBUG_NOCOLOR=
|
|
|
|
# Configures the agent hostname.
|
|
# Default: empty
|
|
#WOODPECKER_HOSTNAME=
|
|
|
|
# Configures the number of parallel builds.
|
|
# Default: 1
|
|
#WOODPECKER_MAX_PROCS=
|
|
|
|
# Enable healthcheck endpoint.
|
|
# Default: true
|
|
#WOODPECKER_HEALTHCHECK=
|
|
|
|
# After a duration of this time of no activity, the agent pings the server to check if the transport is still alive.
|
|
# Default: empty
|
|
#WOODPECKER_KEEPALIVE_TIME=
|
|
|
|
# After pinging for a keepalive check, the agent waits for a duration of this time before closing the connection if no activity.
|
|
# Default: 20s
|
|
#WOODPECKER_KEEPALIVE_TIMEOUT=
|
|
|
|
# Configures if the connection to WOODPECKER_SERVER should be made using a secure transport.
|
|
# Default: false
|
|
#WOODPECKER_GRPC_SECURE=
|
|
|
|
# Configures if the gRPC server certificate should be verified, only valid when WOODPECKER_GRPC_SECURE is true.
|
|
# Default: true
|
|
#WOODPECKER_GRPC_VERIFY=
|
|
|
|
# Configures the backend engine to run pipelines on. Possible values are auto-detect or docker.
|
|
# Default: auto-detect
|
|
#WOODPECKER_BACKEND=
|
|
|
|
# Path to Docker or Podman socket. Can be an SSH address.
|
|
# Default: unix:///var/run/docker.sock
|
|
#DOCKER_HOST=
|