basic-values.yaml 765 B

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