1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- TZ: Etc/UTC
- windmill:
- postgres_image_selector: postgres_17_image
- db_password: password
- mount_docker_socket: false
- enable_report_workers: true
- native_workers: 8
- reports_workers: 1
- additional_envs: []
- network:
- web_port:
- bind_mode: published
- port_number: 8080
- smtp_port:
- bind_mode: published
- port_number: 8082
- ix_volumes:
- postgres_data: /opt/tests/mnt/postgres_data
- worker_cache: /opt/tests/mnt/worker_cache
- worker_logs: /opt/tests/mnt/worker_logs
- lsp_cache: /opt/tests/mnt/lsp_cache
- caddy_data: /opt/tests/mnt/caddy_data
- storage:
- postgres_data:
- type: ix_volume
- ix_volume_config:
- create_host_path: true
- dataset_name: postgres_data
- worker_cache:
- type: ix_volume
- ix_volume_config:
- create_host_path: true
- dataset_name: worker_cache
- worker_logs:
- type: ix_volume
- ix_volume_config:
- create_host_path: true
- dataset_name: worker_logs
- lsp_cache:
- type: ix_volume
- ix_volume_config:
- create_host_path: true
- dataset_name: lsp_cache
- caddy_data:
- type: ix_volume
- ix_volume_config:
- create_host_path: true
- dataset_name: caddy_data
- additional_storage: []
|