basic-values.yaml 897 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. directus:
  6. postgres_image_selector: postgres_17_image
  7. db_password: password
  8. redis_password: password
  9. secret: password
  10. admin_email: admin@example.com
  11. admin_password: password
  12. enable_websocket: true
  13. additional_envs: []
  14. network:
  15. web_port:
  16. bind_mode: published
  17. port_number: 8080
  18. ix_volumes:
  19. uploads: /opt/tests/mnt/directus/uploads
  20. extensions: /opt/tests/mnt/directus/extensions
  21. postgres_data: /opt/tests/mnt/directus/postgres_data
  22. storage:
  23. uploads:
  24. type: ix_volume
  25. ix_volume_config:
  26. dataset_name: uploads
  27. create_host_path: true
  28. extensions:
  29. type: ix_volume
  30. ix_volume_config:
  31. dataset_name: extensions
  32. create_host_path: true
  33. postgres_data:
  34. type: ix_volume
  35. ix_volume_config:
  36. dataset_name: postgres_data
  37. create_host_path: true
  38. additional_storage: []