https-values.yaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: America/New_York
  6. jellyfin:
  7. publish_server_url: https://jellyfin.example.com
  8. additional_envs: []
  9. network:
  10. host_network: false
  11. web_port:
  12. bind_mode: published
  13. port_number: 8080
  14. https_port:
  15. bind_mode: published
  16. port_number: 8443
  17. discovery_port:
  18. bind_mode: published
  19. port_number: 7359
  20. run_as:
  21. user: 568
  22. group: 568
  23. ix_volumes:
  24. jellyfin-cache: /opt/tests/mnt/jellyfin-cache
  25. jellyfin-config: /opt/tests/mnt/jellyfin-config
  26. jellyfin-transcodes: /opt/tests/mnt/jellyfin-transcodes
  27. jellyfin-series: /opt/tests/mnt/jellyfin-series
  28. jellyfin-video: /opt/tests/mnt/jellyfin-video
  29. storage:
  30. cache:
  31. type: ix_volume
  32. ix_volume_config:
  33. dataset_name: jellyfin-cache
  34. create_host_path: true
  35. config:
  36. type: ix_volume
  37. ix_volume_config:
  38. dataset_name: jellyfin-config
  39. create_host_path: true
  40. transcodes:
  41. type: tmpfs
  42. tmpfs_config:
  43. size: 500
  44. additional_storage:
  45. - type: ix_volume
  46. mount_path: /jellyfin-series
  47. ix_volume_config:
  48. dataset_name: jellyfin-series
  49. create_host_path: true
  50. - type: anonymous
  51. mount_path: /scratchpad
  52. volume_config:
  53. nocopy: true
  54. - type: ix_volume
  55. mount_path: /jellyfin-video
  56. ix_volume_config:
  57. dataset_name: jellyfin-video
  58. create_host_path: true