basic-values.yaml 674 B

12345678910111213141516171819202122232425262728293031323334
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. baserow:
  6. postgres_image_selector: postgres_17_image
  7. db_password: secret
  8. secret_key: super_secret
  9. redis_password: secret
  10. public_url: "http://localhost:8080"
  11. additional_envs: []
  12. network:
  13. web_port:
  14. bind_mode: published
  15. port_number: 8080
  16. ix_volumes:
  17. data: /opt/tests/mnt/baserow/data
  18. postgres_data: /opt/tests/mnt/baserow/postgres_data
  19. storage:
  20. data:
  21. type: ix_volume
  22. ix_volume_config:
  23. dataset_name: data
  24. create_host_path: true
  25. postgres_data:
  26. type: ix_volume
  27. ix_volume_config:
  28. dataset_name: postgres_data
  29. create_host_path: true
  30. additional_storage: []