basic-values.yaml 838 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. linkwarden:
  7. postgres_image_selector: postgres_17_image
  8. db_password: password
  9. nextauth_secret: secret
  10. meilisearch_master_key: master-key
  11. additional_envs: []
  12. network:
  13. web_port:
  14. bind_mode: published
  15. port_number: 8080
  16. ix_volumes:
  17. data: /opt/tests/mnt/linkwarden/data
  18. postgres_data: /opt/tests/mnt/linkwarden/postgres-data
  19. meili_data: /opt/tests/mnt/linkwarden/meili-data
  20. storage:
  21. data:
  22. type: ix_volume
  23. ix_volume_config:
  24. dataset_name: data
  25. create_host_path: true
  26. postgres_data:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: postgres_data
  30. create_host_path: true
  31. meili_data:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: meili_data
  35. create_host_path: true
  36. additional_storage: []