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
26 lines
837 B
Properties
Executable File
26 lines
837 B
Properties
Executable File
# Database persistence type.
|
|
conductor.db.type=postgres
|
|
conductor.queue.type=postgres
|
|
conductor.external-payload-storage.type=postgres
|
|
|
|
# Database connectivity
|
|
spring.datasource.url=jdbc:postgresql://postgresdb:5432/postgres
|
|
spring.datasource.username=conductor
|
|
spring.datasource.password=conductor
|
|
|
|
|
|
# Indexing Properties
|
|
conductor.indexing.enabled=true
|
|
conductor.indexing.type=postgres
|
|
# Required to disable connecting to elasticsearch.
|
|
conductor.elasticsearch.version=0
|
|
|
|
# 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
|
|
|
|
# Shorten postpone duration to speed up concurrent execution limit tests (default is 60s)
|
|
conductor.app.taskExecutionPostponeDuration=10s |