report-worker-values.yaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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: false
  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. worker:
  22. native_num_workers: 8
  23. reports_num_workers: 1
  24. ix_volumes:
  25. postgres_data: /opt/tests/mnt/postgres_data
  26. worker_cache: /opt/tests/mnt/worker_cache
  27. worker_logs: /opt/tests/mnt/worker_logs
  28. lsp_cache: /opt/tests/mnt/lsp_cache
  29. caddy_data: /opt/tests/mnt/caddy_data
  30. storage:
  31. postgres_data:
  32. type: ix_volume
  33. ix_volume_config:
  34. create_host_path: true
  35. dataset_name: postgres_data
  36. worker_cache:
  37. type: ix_volume
  38. ix_volume_config:
  39. create_host_path: true
  40. dataset_name: worker_cache
  41. worker_logs:
  42. type: ix_volume
  43. ix_volume_config:
  44. create_host_path: true
  45. dataset_name: worker_logs
  46. lsp_cache:
  47. type: ix_volume
  48. ix_volume_config:
  49. create_host_path: true
  50. dataset_name: lsp_cache
  51. caddy_data:
  52. type: ix_volume
  53. ix_volume_config:
  54. create_host_path: true
  55. dataset_name: caddy_data
  56. additional_storage: []