basic-values.yaml 854 B

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