summarylogtreecommitdiffstats
path: root/agent.env
blob: 1226ac54fbfd18c814074e26aa5c41873bd734fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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=