basic-values.yaml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. concourse:
  6. db_password: concourse
  7. postgres_image_selector: postgres_17_image
  8. external_url: http://localhost:8080
  9. users:
  10. - username: user
  11. password: pass
  12. is_admin: true
  13. - username: user2
  14. password: pass2
  15. is_admin: true
  16. - username: user3
  17. password: pass3
  18. is_admin: false
  19. worker_additional_envs: []
  20. web_additional_envs: []
  21. network:
  22. http_port:
  23. bind_mode: published
  24. port_number: 8080
  25. certificate_id: null
  26. ix_volumes:
  27. workspace: /opt/tests/mnt/workspace
  28. keystore: /opt/tests/mnt/keystore
  29. postgres_data: /opt/tests/mnt/postgres-data
  30. storage:
  31. workspace:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: workspace
  35. create_host_path: true
  36. keystore:
  37. type: ix_volume
  38. ix_volume_config:
  39. dataset_name: keystore
  40. create_host_path: true
  41. postgres_data:
  42. type: ix_volume
  43. ix_volume_config:
  44. dataset_name: postgres_data
  45. create_host_path: true
  46. additional_storage: []