basic-values.yaml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. roundcube:
  6. postgres_image_selector: postgres_17_image
  7. db_password: db-roundcube-password
  8. default_host: roundcube.example.com
  9. default_port: 143
  10. smtp_server: ''
  11. smtp_port: 587
  12. skin: elastic
  13. plugins:
  14. - archive
  15. - zipdownload
  16. aspell_dicts: []
  17. upload_max_size: 5
  18. additional_envs: []
  19. network:
  20. web_port:
  21. bind_mode: published
  22. port_number: 8080
  23. ix_volumes:
  24. html: /opt/tests/mnt/html
  25. config: /opt/tests/mnt/config
  26. temps: /opt/tests/mnt/temps
  27. postgres_data: /opt/tests/mnt/postgres_data
  28. storage:
  29. html:
  30. type: ix_volume
  31. ix_volume_config:
  32. dataset_name: html
  33. create_host_path: true
  34. config:
  35. type: ix_volume
  36. ix_volume_config:
  37. dataset_name: config
  38. create_host_path: true
  39. temps:
  40. type: ix_volume
  41. ix_volume_config:
  42. dataset_name: temps
  43. create_host_path: true
  44. postgres_data:
  45. type: ix_volume
  46. ix_volume_config:
  47. dataset_name: postgres_data
  48. create_host_path: true
  49. additional_storage: []