basic-values.yaml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. transmission:
  6. additional_config:
  7. - key: random-num
  8. value: "123"
  9. - key: random-bool
  10. value: "true"
  11. - key: random-str
  12. value: "abc"
  13. additional_envs: []
  14. network:
  15. host_network: false
  16. web_port:
  17. bind_mode: published
  18. port_number: 8080
  19. peer_port:
  20. bind_mode: published
  21. port_number: 50413
  22. run_as:
  23. user: 568
  24. group: 568
  25. ix_volumes:
  26. config: /opt/tests/mnt/config
  27. downloads_complete: /opt/tests/mnt/downloads_complete
  28. downloads_incomplete: /opt/tests/mnt/downloads_incomplete
  29. storage:
  30. config:
  31. type: ix_volume
  32. ix_volume_config:
  33. dataset_name: config
  34. create_host_path: true
  35. downloads_complete:
  36. type: ix_volume
  37. mount_path: /downloads
  38. ix_volume_config:
  39. dataset_name: downloads_complete
  40. create_host_path: true
  41. enable_incomplete_dir: true
  42. mount_incomplete_as_separate_storage: true
  43. incomplete_dir_path: /downloads/incomplete
  44. downloads_incomplete:
  45. type: ix_volume
  46. ix_volume_config:
  47. dataset_name: downloads_incomplete
  48. create_host_path: true
  49. additional_storage: []