basic-values.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. gramps:
  6. redis_password: test
  7. disable_telemetry: false
  8. app_key: exactly-32-characters-app-keyyyy
  9. additional_envs: []
  10. network:
  11. web_port:
  12. bind_mode: published
  13. port_number: 8080
  14. ix_volumes:
  15. users: /opt/tests/mnt/gramps/users
  16. index: /opt/tests/mnt/gramps/index
  17. thumbnail_cache: /opt/tests/mnt/gramps/thumbnail_cache
  18. cache: /opt/tests/mnt/gramps/cache
  19. media: /opt/tests/mnt/gramps/media
  20. grampsdb: /opt/tests/mnt/gramps/grampsdb
  21. storage:
  22. users:
  23. type: ix_volume
  24. ix_volume_config:
  25. dataset_name: users
  26. create_host_path: true
  27. index:
  28. type: ix_volume
  29. ix_volume_config:
  30. dataset_name: index
  31. create_host_path: true
  32. thumbnail_cache:
  33. type: ix_volume
  34. ix_volume_config:
  35. dataset_name: thumbnail_cache
  36. create_host_path: true
  37. cache:
  38. type: ix_volume
  39. ix_volume_config:
  40. dataset_name: cache
  41. create_host_path: true
  42. media:
  43. type: ix_volume
  44. ix_volume_config:
  45. dataset_name: media
  46. create_host_path: true
  47. grampsdb:
  48. type: ix_volume
  49. ix_volume_config:
  50. dataset_name: grampsdb
  51. create_host_path: true
  52. additional_storage: []