basic-values.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. wger:
  7. postgres_image_selector: postgres_17_image
  8. db_password: wger
  9. redis_password: wger
  10. secret_key: secret
  11. signing_key: signing
  12. trusted_origins:
  13. - http://localhost:8080
  14. max_upload_size_mb: 100
  15. additional_envs: []
  16. network:
  17. host_network: false
  18. web_port:
  19. bind_mode: published
  20. port_number: 8080
  21. ix_volumes:
  22. static: /opt/tests/mnt/wger/static
  23. media: /opt/tests/mnt/wger/media
  24. beat: /opt/tests/mnt/wger/beat
  25. postgres_data: /opt/tests/mnt/wger/postgres-data
  26. storage:
  27. static:
  28. type: ix_volume
  29. ix_volume_config:
  30. dataset_name: static
  31. create_host_path: true
  32. media:
  33. type: ix_volume
  34. ix_volume_config:
  35. dataset_name: media
  36. create_host_path: true
  37. beat:
  38. type: ix_volume
  39. ix_volume_config:
  40. dataset_name: beat
  41. create_host_path: true
  42. postgres_data:
  43. type: ix_volume
  44. ix_volume_config:
  45. dataset_name: postgres_data
  46. create_host_path: true
  47. additional_storage: []