basic-values.yaml 824 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. vaultwarden:
  7. postgres_image_selector: postgres_17_image
  8. db_password: some-secret-password
  9. admin_token: some-secret-token
  10. enable_websocket: true
  11. additional_envs: []
  12. network:
  13. host_network: false
  14. web_port:
  15. bind_mode: published
  16. port_number: 8080
  17. certificate_id:
  18. domain: http://localhost:8080
  19. run_as:
  20. user: 568
  21. group: 568
  22. ix_volumes:
  23. vaultwarden-data: /opt/test/vaultwarden-data
  24. vaultwarden-postgres-data: /opt/test/vaultwarden-postgres-data
  25. storage:
  26. data:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: vaultwarden-data
  30. create_host_path: true
  31. postgres_data:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: vaultwarden-postgres-data
  35. create_host_path: true
  36. additional_storage: []