basic-values.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. planka:
  6. postgres_image_selector: postgres_17_image
  7. db_password: db-planka-password
  8. secret_key: secret-key
  9. default_admin_email: admin@planka.com
  10. default_admin_name: admin-planka
  11. default_admin_username: admin-planka
  12. default_admin_password: admin-planka-password
  13. base_url: http://localhost:8080
  14. trust_proxy: false
  15. additional_envs: []
  16. network:
  17. web_port:
  18. bind_mode: published
  19. port_number: 8080
  20. ix_volumes:
  21. avatars: /opt/tests/avatars
  22. background_images: /opt/tests/background-images
  23. attachments: /opt/tests/attachments
  24. postgres_data: /opt/tests/postgres-data
  25. storage:
  26. avatars:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: avatars
  30. create_host_path: true
  31. background_images:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: background_images
  35. create_host_path: true
  36. attachments:
  37. type: ix_volume
  38. ix_volume_config:
  39. dataset_name: attachments
  40. create_host_path: true
  41. postgres_data:
  42. type: ix_volume
  43. ix_volume_config:
  44. dataset_name: postgres_data
  45. create_host_path: true
  46. additional_storage: []