extra-values.yaml 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. odoo:
  6. postgres_image_selector: postgres_17_image
  7. db_password: password
  8. additional_conf:
  9. - key: workers
  10. value: "0"
  11. - key: log_level
  12. value: "info"
  13. additional_envs: []
  14. network:
  15. web_port:
  16. bind_mode: published
  17. port_number: 8080
  18. ix_volumes:
  19. data: /opt/tests/mnt/data
  20. addons: /opt/tests/mnt/addons
  21. postgres_data: /opt/tests/mnt/postgres_data
  22. storage:
  23. data:
  24. type: ix_volume
  25. ix_volume_config:
  26. dataset_name: data
  27. create_host_path: true
  28. addons:
  29. type: ix_volume
  30. ix_volume_config:
  31. dataset_name: addons
  32. create_host_path: true
  33. postgres_data:
  34. type: ix_volume
  35. ix_volume_config:
  36. dataset_name: postgres_data
  37. create_host_path: true
  38. additional_storage: []