01-bug-report.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. name: Bug Report
  2. description: Report a bug or unexpected behavior in RackPeek
  3. title: "[Bug]: "
  4. labels: ["bug", "triage"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for helping improve RackPeek! Please fill out the fields below. The more context you provide, the easier it is for us to investigate.
  10. - type: textarea
  11. id: what-happened
  12. attributes:
  13. label: What happened?
  14. description: A brief description of the bug. What did you see vs. what did you expect?
  15. placeholder: e.g. "rpk servers add my-server" fails with an error when...
  16. validations:
  17. required: true
  18. - type: dropdown
  19. id: where
  20. attributes:
  21. label: Where does this occur?
  22. description: CLI or Web UI?
  23. options:
  24. - CLI (rpk commands)
  25. - Web UI
  26. - Both / Not sure
  27. validations:
  28. required: true
  29. - type: dropdown
  30. id: deployment
  31. attributes:
  32. label: How do you run RackPeek?
  33. description: Helps with deployment-specific issues
  34. options:
  35. - Docker
  36. - Native Linux binary
  37. - Other
  38. validations:
  39. required: true
  40. - type: input
  41. id: version
  42. attributes:
  43. label: RackPeek version
  44. description: e.g. 0.0.3, or Docker image tag (e.g. aptacode/rackpeek:latest)
  45. placeholder: 0.0.3 or latest
  46. validations:
  47. required: false
  48. - type: textarea
  49. id: steps
  50. attributes:
  51. label: Steps to reproduce (optional)
  52. description: If you can reproduce the bug, list the steps. Paste commands or describe Web UI actions.
  53. placeholder: |
  54. 1. rpk servers add test-server
  55. 2. rpk servers drive add test-server --type ssd --size 500
  56. 3. ...
  57. validations:
  58. required: false
  59. - type: textarea
  60. id: screenshots
  61. attributes:
  62. label: Screenshots (optional)
  63. description: Drag and drop images here. Screenshots of the error, terminal output, or unexpected UI help a lot. Please redact any sensitive info (hostnames, IPs, config).
  64. placeholder: Drop images here or paste links...
  65. validations:
  66. required: false