basic-values.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. mattermost:
  6. postgres_image_selector: postgres_17_image
  7. db_password: secret
  8. site_url: http://localhost:8080
  9. additional_envs: []
  10. run_as:
  11. user: 568
  12. group: 568
  13. network:
  14. web_port:
  15. bind_mode: published
  16. port_number: 8080
  17. calls_port:
  18. bind_mode: published
  19. port_number: 8081
  20. certificate_id: null
  21. ix_volumes:
  22. config: /opt/tests/mnt/mattermost/config
  23. data: /opt/tests/mnt/mattermost/data
  24. logs: /opt/tests/mnt/mattermost/logs
  25. plugins: /opt/tests/mnt/mattermost/plugins
  26. client_plugins: /opt/tests/mnt/mattermost/client_plugins
  27. bleve_indexes: /opt/tests/mnt/mattermost/bleve_indexes
  28. postgres_data: /opt/tests/mnt/mattermost/postgres_data
  29. storage:
  30. config:
  31. type: ix_volume
  32. ix_volume_config:
  33. dataset_name: config
  34. create_host_path: true
  35. data:
  36. type: ix_volume
  37. ix_volume_config:
  38. dataset_name: data
  39. create_host_path: true
  40. logs:
  41. type: ix_volume
  42. ix_volume_config:
  43. dataset_name: logs
  44. create_host_path: true
  45. plugins:
  46. type: ix_volume
  47. ix_volume_config:
  48. dataset_name: plugins
  49. create_host_path: true
  50. client_plugins:
  51. type: ix_volume
  52. ix_volume_config:
  53. dataset_name: client_plugins
  54. create_host_path: true
  55. bleve_indexes:
  56. type: ix_volume
  57. ix_volume_config:
  58. dataset_name: bleve_indexes
  59. create_host_path: true
  60. postgres_data:
  61. type: ix_volume
  62. ix_volume_config:
  63. dataset_name: postgres_data
  64. create_host_path: true
  65. additional_storage: []