| 1234567891011121314151617181920212223242526272829303132333435363738 |
- datasources:
- postgres:
- url: jdbc:postgresql://${KESTRA_DB_HOST}:5432/${KESTRA_DB_NAME}?tcpKeepAlive=true
- driver-class-name: org.postgresql.Driver
- username: ${KESTRA_DB_USERNAME}
- password: ${KESTRA_DB_PASSWORD}
- pool-name: dataops-kestra-pool
- maximum-pool-size: 20
- minimum-idle: 4
- connection-timeout: 30000
- validation-timeout: 5000
- idle-timeout: 300000
- max-lifetime: 900000
- initialization-fail-timeout: 30000
- connection-test-query: SELECT 1
- kestra:
- server:
- basic-auth:
- enabled: true
- username: ${KESTRA_USERNAME}
- password: ${KESTRA_PASSWORD}
- repository:
- type: postgres
- queue:
- type: postgres
- storage:
- type: local
- local:
- base-path: /app/storage
- tutorial-flows:
- enabled: false
- tasks:
- tmp-dir:
- path: /tmp/kestra-wd/tmp
- url: http://127.0.0.1:18080/
- anonymous-usage-report:
- enabled: false
|