a9cd7750f4
CI / detect-changes (push) Waiting to run
CI / build (push) Waiting to run
UI v2 CI / E2E (Mocked) (push) Blocked by required conditions
UI v2 Integration CI / E2E (Integration) (push) Waiting to run
CI / unit-test (push) Blocked by required conditions
CI / test-harness (push) Waiting to run
CI / generate-e2e-matrix (push) Waiting to run
CI / e2e (push) Blocked by required conditions
CI / build-ui (push) Waiting to run
Publish docs via GitHub Pages / Deploy docs (push) Waiting to run
Release Drafter / update_release_draft (push) Waiting to run
UI v2 CI / Lint, Format & Test (push) Waiting to run
31 lines
1.0 KiB
Properties
Executable File
31 lines
1.0 KiB
Properties
Executable File
# Database persistence type.
|
|
conductor.db.type=postgres
|
|
conductor.queue.type=postgres
|
|
conductor.external-payload-storage.type=postgres
|
|
|
|
# Restrict the size of task execution logs. Default is set to 10.
|
|
# conductor.app.taskExecLogSizeLimit=10
|
|
|
|
# postgres
|
|
spring.datasource.url=jdbc:postgresql://postgresdb:5432/postgres
|
|
spring.datasource.username=conductor
|
|
spring.datasource.password=conductor
|
|
|
|
# Elastic search instance indexing is enabled.
|
|
conductor.indexing.enabled=true
|
|
conductor.indexing.type=elasticsearch
|
|
conductor.elasticsearch.url=http://es:9200
|
|
conductor.elasticsearch.indexName=conductor
|
|
conductor.elasticsearch.version=7
|
|
conductor.elasticsearch.clusterHealthColor=yellow
|
|
|
|
# Restrict the number of task log results that will be returned in the response. Default is set to 10.
|
|
# conductor.elasticsearch.taskLogResultLimit=10
|
|
|
|
# Additional modules for metrics collection exposed to Prometheus (optional)
|
|
conductor.metrics-prometheus.enabled=true
|
|
management.endpoints.web.exposure.include=prometheus
|
|
|
|
# Load sample kitchen-sink workflow
|
|
loadSample=true
|