basic-values.yaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. nextcloud:
  6. postgres_image_selector: postgres_17_image
  7. admin_user: admin
  8. admin_password: password
  9. apt_packages:
  10. - ffmpeg
  11. - smbclient
  12. - ocrmypdf
  13. - libreoffice
  14. tesseract_languages:
  15. - eng
  16. - chi-sim
  17. host: "[aaaa:bbbb:ffff:cccc::dddd]:8080"
  18. data_dir_path: /var/www/html/data
  19. redis_password: YFtYK25GBfr!UsX5mu2Dnd5L5W
  20. db_user: nextcloud
  21. db_password: password
  22. php_upload_limit: 3
  23. php_memory_limit: 512
  24. op_cache_interned_strings_buffer: 32
  25. op_cache_memory_consumption: 128
  26. max_execution_time: 30
  27. imaginary:
  28. enabled: false
  29. cron:
  30. enabled: true
  31. schedule: "*/5 * * * *"
  32. additional_envs: []
  33. network:
  34. web_port:
  35. bind_mode: published
  36. port_number: 8080
  37. certificate_id:
  38. nginx:
  39. proxy_timeout: 60
  40. use_different_port: false
  41. ix_volumes:
  42. postgres_data: /opt/tests/mnt/postgres_data
  43. nextcloud-data: /opt/tests/mnt/nextcloud-data
  44. nextcloud-html: /opt/tests/mnt/nextcloud-html
  45. storage:
  46. data:
  47. type: ix_volume
  48. ix_volume_config:
  49. dataset_name: nextcloud-data
  50. create_host_path: true
  51. html:
  52. type: ix_volume
  53. ix_volume_config:
  54. dataset_name: nextcloud-html
  55. create_host_path: true
  56. postgres_data:
  57. type: ix_volume
  58. ix_volume_config:
  59. dataset_name: postgres_data
  60. create_host_path: true
  61. additional_storage: []