docker-values.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. windmill:
  7. postgres_image_selector: postgres_17_image
  8. db_password: password
  9. enable_report_workers: true
  10. mount_docker_socket: true
  11. native_workers: 8
  12. reports_workers: 1
  13. additional_envs: []
  14. network:
  15. web_port:
  16. bind_mode: published
  17. port_number: 8080
  18. smtp_port:
  19. bind_mode: published
  20. port_number: 8082
  21. ix_volumes:
  22. postgres_data: /opt/tests/mnt/postgres_data
  23. worker_cache: /opt/tests/mnt/worker_cache
  24. worker_logs: /opt/tests/mnt/worker_logs
  25. lsp_cache: /opt/tests/mnt/lsp_cache
  26. caddy_data: /opt/tests/mnt/caddy_data
  27. storage:
  28. postgres_data:
  29. type: ix_volume
  30. ix_volume_config:
  31. create_host_path: true
  32. dataset_name: postgres_data
  33. worker_cache:
  34. type: ix_volume
  35. ix_volume_config:
  36. create_host_path: true
  37. dataset_name: worker_cache
  38. worker_logs:
  39. type: ix_volume
  40. ix_volume_config:
  41. create_host_path: true
  42. dataset_name: worker_logs
  43. lsp_cache:
  44. type: ix_volume
  45. ix_volume_config:
  46. create_host_path: true
  47. dataset_name: lsp_cache
  48. caddy_data:
  49. type: ix_volume
  50. ix_volume_config:
  51. create_host_path: true
  52. dataset_name: caddy_data
  53. additional_storage: []