basic-values.yaml 977 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. zipline:
  6. postgres_image_selector: postgres_17_image
  7. db_password: password
  8. core_secret: exactly-32-characters-app-secret
  9. network:
  10. web_port:
  11. bind_mode: published
  12. port_number: 8080
  13. certificate_id: null
  14. run_as:
  15. user: 568
  16. group: 568
  17. ix_volumes:
  18. uploads: /opt/tests/mnt/zipline/uploads
  19. public: /opt/tests/mnt/zipline/public
  20. themes: /opt/tests/mnt/zipline/themes
  21. postgres_data: /opt/tests/mnt/zipline/postgres_data
  22. storage:
  23. uploads:
  24. type: ix_volume
  25. ix_volume_config:
  26. dataset_name: uploads
  27. create_host_path: true
  28. public:
  29. type: ix_volume
  30. ix_volume_config:
  31. dataset_name: public
  32. create_host_path: true
  33. themes:
  34. type: ix_volume
  35. ix_volume_config:
  36. dataset_name: themes
  37. create_host_path: true
  38. postgres_data:
  39. type: ix_volume
  40. ix_volume_config:
  41. dataset_name: postgres_data
  42. create_host_path: true
  43. additional_storage: []