web-with-auth-values.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. garage:
  6. admin_token: token
  7. rpc_secret: dcd39ecd725f400344df1770fc8f29a6ea25597ec5402b714e8b9ce2de50cd40
  8. region: garage
  9. enable_web_ui_auth: true
  10. web_ui_username: admin
  11. web_ui_password: This-Is-A-Test15
  12. additional_options:
  13. - type: string
  14. path: .s3_api.root_domain
  15. value: localhost
  16. - type: int
  17. path: .compression_level
  18. value: "1"
  19. - type: bool
  20. path: .allow_world_readable_secrets
  21. value: "true"
  22. additional_envs: []
  23. network:
  24. web_port:
  25. bind_mode: published
  26. port_number: 8080
  27. rpc_port:
  28. bind_mode: published
  29. port_number: 8081
  30. s3_port:
  31. bind_mode: published
  32. port_number: 8082
  33. s3_web_port:
  34. bind_mode: published
  35. port_number: 8083
  36. admin_port:
  37. bind_mode: published
  38. port_number: 8084
  39. run_as:
  40. user: 568
  41. group: 568
  42. ix_volumes:
  43. config: /opt/tests/mnt/garage/config
  44. metadata: /opt/tests/mnt/garage/meta
  45. data: /opt/tests/mnt/garage/data
  46. metadata_snapshots: /opt/tests/mnt/garage/snapshots
  47. storage:
  48. config:
  49. type: ix_volume
  50. ix_volume_config:
  51. dataset_name: config
  52. create_host_path: true
  53. metadata:
  54. type: ix_volume
  55. ix_volume_config:
  56. dataset_name: metadata
  57. create_host_path: true
  58. data:
  59. type: ix_volume
  60. ix_volume_config:
  61. dataset_name: data
  62. create_host_path: true
  63. metadata_snapshots:
  64. type: ix_volume
  65. ix_volume_config:
  66. dataset_name: metadata_snapshots
  67. create_host_path: true
  68. additional_storage: []