Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ immudb_database: <immudb database name to be used>
immudb_address: <url in format `host:port` of immudb instance, default port is 3322>
immudb_public_key_file: <path of the public key to use>

# minutes a build task may go without a ping from its build node before it
# expires and becomes available for a build node to pick up again (default: 20)
build_task_expiration_minutes: <number of minutes, e.g. 20>

```
Of course, you can override the service's default users, passwords and rabbitmq params.
```yaml
Expand Down
1 change: 1 addition & 0 deletions roles/dev_deploy/templates/vars.env.j2
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ IMMUDB_PASSWORD="{{ immudb_password }}"
IMMUDB_DATABASE="{{ immudb_database }}"
IMMUDB_ADDRESS="{{ immudb_address }}"
IMMUDB_PUBLIC_KEY_FILE="{{ immudb_public_key_file }}"
BUILD_TASK_EXPIRATION_MINUTES="{{ build_task_expiration_minutes | default(20) }}"