ce-values.yaml 793 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. chatwoot:
  6. image_selector: ce_image
  7. postgres_image_selector: postgres_17_image
  8. db_password: secret
  9. redis_password: secret
  10. secret_key_base: secret
  11. # true/false/api_only
  12. enable_account_signup: "true"
  13. frontend_url: http://localhost:8080
  14. additional_envs: []
  15. run_as:
  16. user: 568
  17. group: 568
  18. network:
  19. web_port:
  20. bind_mode: published
  21. port_number: 8080
  22. ix_volumes:
  23. postgres_data: /opt/tests/mnt/chatwoot/postgres_data
  24. data: /opt/tests/mnt/chatwoot/data
  25. storage:
  26. data:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: data
  30. create_host_path: true
  31. postgres_data:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: postgres_data
  35. create_host_path: true
  36. additional_storage: []