basic-values.yaml 818 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. resources:
  2. limits:
  3. cpus: 2
  4. memory: 4096
  5. TZ: America/New_York
  6. nocodb:
  7. postgres_image_selector: postgres_17_image
  8. db_password: password
  9. redis_password: password
  10. jwt_secret: test-jwt-secret-for-development-only
  11. admin_email: admin@example.com
  12. admin_password: password
  13. public_url: http://localhost:8081
  14. invite_only_signup: false
  15. disable_telemetry: true
  16. run_as:
  17. user: 568
  18. group: 568
  19. ix_volumes:
  20. data: /opt/tests/mnt/nocodb/data
  21. postgres_data: /opt/tests/mnt/nocodb/postgres_data
  22. network:
  23. web_port:
  24. bind_mode: published
  25. port_number: 8081
  26. storage:
  27. data:
  28. type: ix_volume
  29. ix_volume_config:
  30. dataset_name: data
  31. create_host_path: true
  32. postgres_data:
  33. type: ix_volume
  34. ix_volume_config:
  35. dataset_name: postgres_data
  36. create_host_path: true