basic-values.yaml 602 B

12345678910111213141516171819202122232425262728293031
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. warracker:
  6. postgres_image_selector: postgres_17_image
  7. db_password: secret
  8. additional_envs: []
  9. network:
  10. web_port:
  11. bind_mode: published
  12. port_number: 8080
  13. ix_volumes:
  14. uploads: /opt/tests/mnt/warracker/uploads
  15. postgres_data: /opt/tests/mnt/warracker/postgres_data
  16. storage:
  17. uploads:
  18. type: ix_volume
  19. ix_volume_config:
  20. dataset_name: uploads
  21. create_host_path: true
  22. postgres_data:
  23. type: ix_volume
  24. ix_volume_config:
  25. dataset_name: postgres_data
  26. create_host_path: true
  27. additional_storage: []