Skip to content

Commit

Permalink
Create bug-report template in GitHub form
Browse files Browse the repository at this point in the history
  • Loading branch information
zwpaper authored Apr 7, 2023
1 parent fc0b16b commit 91222b5
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: Bug Report
description: Report a bug encountered while operating Scheduler Plugins
labels: kind/bug
body:
- type: checkboxes
id: area
attributes:
label: Area
description: Which component do you used?
options:
- label: Scheduler
- label: Controller
- label: Helm Chart
- label: Documents

- type: input
id: area-custom
attributes:
label: Other components
description: If the component is not listed above, please tell us here
placeholder: ex. manifest
validations:
required: false

- type: textarea
id: problem
attributes:
label: What happened?
description: |
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
validations:
required: true

- type: textarea
id: expected
attributes:
label: What did you expect to happen?
validations:
required: true

- type: textarea
id: repro
attributes:
label: How can we reproduce it (as minimally and precisely as possible)?
validations:
required: false

- type: textarea
id: additional
attributes:
label: Anything else we need to know?

- type: textarea
id: kubeVersion
attributes:
label: Kubernetes version
value: |
<details>
```console
$ kubectl version
# paste output here
```
</details>
validations:
required: true

- type: textarea
id: schedulerPluginsVersion
attributes:
label: Scheduler Plugins version
value: |
<details>
</details>
validations:
required: true

0 comments on commit 91222b5

Please sign in to comment.