basic-values.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. authentik:
  6. postgres_image_selector: postgres_17_image
  7. db_password: authentik
  8. redis_password: authentik
  9. secret_key: authentik
  10. mount_docker_socket: true
  11. setup_email: false
  12. email:
  13. host: smtp.test.com
  14. port: 587
  15. from: authentik@test2.com
  16. username: test
  17. password: testing123
  18. security: tls
  19. additional_envs: []
  20. run_as:
  21. user: 568
  22. group: 568
  23. network:
  24. http_port:
  25. bind_mode: published
  26. port_number: 8080
  27. https_port:
  28. bind_mode: published
  29. port_number: 8443
  30. certificate_id: null
  31. ix_volumes:
  32. postgres_data: /opt/tests/mnt/postgres-data
  33. media: /opt/tests/mnt/media
  34. templates: /opt/tests/mnt/templates
  35. certs: /opt/tests/mnt/certs
  36. storage:
  37. media:
  38. type: ix_volume
  39. ix_volume_config:
  40. dataset_name: media
  41. create_host_path: true
  42. templates:
  43. type: ix_volume
  44. ix_volume_config:
  45. dataset_name: templates
  46. create_host_path: true
  47. certs:
  48. type: ix_volume
  49. ix_volume_config:
  50. dataset_name: certs
  51. create_host_path: true
  52. postgres_data:
  53. type: ix_volume
  54. ix_volume_config:
  55. dataset_name: postgres_data
  56. create_host_path: true
  57. additional_storage: []