basic-values.yaml 728 B

12345678910111213141516171819202122232425262728293031323334353637
  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. additional_envs: []
  10. network:
  11. web_port:
  12. bind_mode: published
  13. port_number: 8080
  14. ix_volumes:
  15. data: /opt/tests/mnt/data
  16. addons: /opt/tests/mnt/addons
  17. postgres_data: /opt/tests/mnt/postgres_data
  18. storage:
  19. data:
  20. type: ix_volume
  21. ix_volume_config:
  22. dataset_name: data
  23. create_host_path: true
  24. addons:
  25. type: ix_volume
  26. ix_volume_config:
  27. dataset_name: addons
  28. create_host_path: true
  29. postgres_data:
  30. type: ix_volume
  31. ix_volume_config:
  32. dataset_name: postgres_data
  33. create_host_path: true
  34. additional_storage: []