basic-values.yaml 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. photoview:
  6. postgres_image_selector: postgres_17_image
  7. db_password: password
  8. additional_envs: []
  9. network:
  10. host_network: false
  11. web_port:
  12. bind_mode: published
  13. port_number: 8080
  14. run_as:
  15. user: 568
  16. group: 568
  17. ix_volumes:
  18. media_cache: /opt/tests/mnt/photoview/media_cache
  19. photos: /opt/tests/mnt/photoview/photos
  20. postgres_data: /opt/tests/mnt/photoview/postgres_data
  21. storage:
  22. media_cache:
  23. type: ix_volume
  24. ix_volume_config:
  25. dataset_name: media_cache
  26. create_host_path: true
  27. postgres_data:
  28. type: ix_volume
  29. ix_volume_config:
  30. dataset_name: postgres_data
  31. create_host_path: true
  32. additional_storage:
  33. - mount_path: /photos
  34. type: ix_volume
  35. read_only: true
  36. ix_volume_config:
  37. dataset_name: photos
  38. create_host_path: true