application.yml 913 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. datasources:
  2. postgres:
  3. url: jdbc:postgresql://${KESTRA_DB_HOST}:5432/${KESTRA_DB_NAME}?tcpKeepAlive=true
  4. driver-class-name: org.postgresql.Driver
  5. username: ${KESTRA_DB_USERNAME}
  6. password: ${KESTRA_DB_PASSWORD}
  7. pool-name: dataops-kestra-pool
  8. maximum-pool-size: 20
  9. minimum-idle: 4
  10. connection-timeout: 30000
  11. validation-timeout: 5000
  12. idle-timeout: 300000
  13. max-lifetime: 900000
  14. initialization-fail-timeout: 30000
  15. connection-test-query: SELECT 1
  16. kestra:
  17. server:
  18. basic-auth:
  19. enabled: true
  20. username: ${KESTRA_USERNAME}
  21. password: ${KESTRA_PASSWORD}
  22. repository:
  23. type: postgres
  24. queue:
  25. type: postgres
  26. storage:
  27. type: local
  28. local:
  29. base-path: /app/storage
  30. tutorial-flows:
  31. enabled: false
  32. tasks:
  33. tmp-dir:
  34. path: /tmp/kestra-wd/tmp
  35. url: http://127.0.0.1:18080/
  36. anonymous-usage-report:
  37. enabled: false