basic-values.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. romm:
  6. postgres_image_selector: postgres_17_image
  7. db_password: postgres-password
  8. redis_password: redis-password
  9. auth_secret_key: change-me
  10. igdb_client_id: igdb-client-id
  11. igdb_client_secret: igdb-client-secret
  12. mobygames_api_key: mobygames-api-key
  13. steamgriddb_api_key: steamgriddb-api-key
  14. additional_envs: []
  15. network:
  16. web_port:
  17. bind_mode: published
  18. port_number: 8080
  19. run_as:
  20. user: 568
  21. group: 568
  22. ix_volumes:
  23. library: /opt/tests/mnt/library
  24. resources: /opt/tests/mnt/resources
  25. config: /opt/tests/mnt/config
  26. assets: /opt/tests/mnt/assets
  27. postgres_data: /opt/tests/mnt/postgres_data
  28. storage:
  29. library:
  30. type: ix_volume
  31. ix_volume_config:
  32. dataset_name: library
  33. create_host_path: true
  34. resources:
  35. type: ix_volume
  36. ix_volume_config:
  37. dataset_name: resources
  38. create_host_path: true
  39. config:
  40. type: ix_volume
  41. ix_volume_config:
  42. dataset_name: config
  43. create_host_path: true
  44. assets:
  45. type: ix_volume
  46. ix_volume_config:
  47. dataset_name: assets
  48. create_host_path: true
  49. postgres_data:
  50. type: ix_volume
  51. ix_volume_config:
  52. dataset_name: postgres_data
  53. create_host_path: true
  54. additional_storage: []