basic-values.yaml 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. adventurelog:
  7. db_password: secret
  8. backend_url: http://localhost:8080
  9. frontend_url: http://localhost:8081
  10. secret_key: supersecretkey
  11. admin_username: admin
  12. admin_password: admin
  13. admin_email: admin@example.com
  14. additional_envs: []
  15. network:
  16. backend_port:
  17. bind_mode: published
  18. port_number: 8080
  19. frontend_port:
  20. bind_mode: published
  21. port_number: 8081
  22. ix_volumes:
  23. postgres_data: /opt/tests/mnt/dawarich/postgres_data
  24. media: /opt/tests/mnt/dawarich/media
  25. storage:
  26. postgres_data:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: postgres_data
  30. create_host_path: true
  31. media:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: media
  35. create_host_path: true
  36. additional_storage: []