basic-values.yaml 724 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. mealie:
  7. postgres_image_selector: postgres_17_image
  8. db_password: db-mealie-password
  9. allow_signup: true
  10. default_group: Home
  11. base_url: http://localhost:8080
  12. additional_envs: []
  13. network:
  14. web_port:
  15. bind_mode: published
  16. port_number: 8080
  17. run_as:
  18. user: 568
  19. group: 568
  20. ix_volumes:
  21. mealie-data: /opt/tests/mnt/mealie-data
  22. postgres-data: /opt/tests/mnt/postgres-data
  23. storage:
  24. data:
  25. type: ix_volume
  26. ix_volume_config:
  27. dataset_name: mealie-data
  28. create_host_path: true
  29. postgres_data:
  30. type: ix_volume
  31. ix_volume_config:
  32. dataset_name: postgres-data
  33. create_host_path: true
  34. additional_storage: []