basic-values.yaml 980 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. dawarich:
  7. db_password: secret
  8. redis_password: secret
  9. application_hosts:
  10. - loc.example.com
  11. additional_envs:
  12. - name: RAILS_LOG_LEVEL
  13. value: info
  14. network:
  15. web_port:
  16. bind_mode: published
  17. port_number: 8080
  18. ix_volumes:
  19. postgres_data: /opt/tests/mnt/dawarich/postgres_data
  20. public: /opt/tests/mnt/dawarich/public
  21. watched: /opt/tests/mnt/dawarich/watched
  22. storage: /opt/tests/mnt/dawarich/storage
  23. storage:
  24. postgres_data:
  25. type: ix_volume
  26. ix_volume_config:
  27. dataset_name: postgres_data
  28. create_host_path: true
  29. public:
  30. type: ix_volume
  31. ix_volume_config:
  32. dataset_name: public
  33. create_host_path: true
  34. watched:
  35. type: ix_volume
  36. ix_volume_config:
  37. dataset_name: watched
  38. create_host_path: true
  39. storage:
  40. type: ix_volume
  41. ix_volume_config:
  42. dataset_name: storage
  43. create_host_path: true
  44. additional_storage: []