farmer-values.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Europe/Amsterdam
  6. chia:
  7. service: farmer-only
  8. full_node_peer: ''
  9. farmer_address: ''
  10. farmer_port: 0
  11. ca: ''
  12. additional_envs: []
  13. network:
  14. chia_port:
  15. bind_mode: published
  16. port_number: 8444
  17. farmer_port:
  18. bind_mode: published
  19. port_number: 8447
  20. ix_volumes:
  21. data: /opt/tests/mnt/data
  22. plots: /opt/tests/mnt/plots
  23. chia-plots: /opt/tests/mnt/chia-plots
  24. chia-non-plots: /opt/tests/mnt/chia-non-plots
  25. storage:
  26. data:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: data
  30. create_host_path: true
  31. plots:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: plots
  35. create_host_path: true
  36. additional_storage:
  37. - type: anonymous
  38. mount_path: /scratchpad
  39. volume_config:
  40. nocopy: true
  41. - type: ix_volume
  42. is_plot_dir: true
  43. mount_path: /other-plots
  44. ix_volume_config:
  45. dataset_name: chia-plots
  46. create_host_path: true
  47. - type: ix_volume
  48. is_plot_dir: false
  49. mount_path: /other-non-plots
  50. ix_volume_config:
  51. dataset_name: chia-non-plots
  52. create_host_path: true