basic-values.yaml 903 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. authelia:
  6. postgres_image_selector: postgres_17_image
  7. # Adds a config file just to make authelia start
  8. # users should disable this and use their own
  9. use_dummy_config: true
  10. db_password: secret
  11. redis_password: secret
  12. encryption_key: must-be-20-characters-or-more
  13. jwt_secret: some-jwt-secret
  14. session_secret: some-session-secret
  15. base_path: /
  16. additional_envs: []
  17. run_as:
  18. user: 568
  19. group: 568
  20. network:
  21. web_port:
  22. bind_mode: published
  23. port_number: 8080
  24. ix_volumes:
  25. config: /opt/tests/mnt/umami/config
  26. postgres_data: /opt/tests/mnt/umami/postgres_data
  27. storage:
  28. config:
  29. type: ix_volume
  30. ix_volume_config:
  31. dataset_name: config
  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: []