basic-values.yaml 899 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. forgejo:
  6. postgres_image_selector: postgres_17_image
  7. db_password: password
  8. root_url: https://forgejo.example.com
  9. additional_envs: []
  10. run_as:
  11. user: 568
  12. group: 568
  13. network:
  14. web_port:
  15. bind_mode: published
  16. port_number: 8080
  17. ssh_port:
  18. bind_mode: published
  19. port_number: 2222
  20. external_ssh_port: null
  21. certificate_id:
  22. ix_volumes:
  23. config: /opt/tests/forgejo/config
  24. data: /opt/tests/forgejo/data
  25. postgres_data: /opt/tests/forgejo/postgres_data
  26. storage:
  27. config:
  28. type: ix_volume
  29. ix_volume_config:
  30. dataset_name: config
  31. create_host_path: true
  32. data:
  33. type: ix_volume
  34. ix_volume_config:
  35. dataset_name: data
  36. create_host_path: true
  37. postgres_data:
  38. type: ix_volume
  39. ix_volume_config:
  40. dataset_name: postgres_data
  41. create_host_path: true
  42. additional_storage: []