Skip to content

Commit 91222b5

Browse files
authored
Create bug-report template in GitHub form
1 parent fc0b16b commit 91222b5

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Bug Report
2+
description: Report a bug encountered while operating Scheduler Plugins
3+
labels: kind/bug
4+
body:
5+
- type: checkboxes
6+
id: area
7+
attributes:
8+
label: Area
9+
description: Which component do you used?
10+
options:
11+
- label: Scheduler
12+
- label: Controller
13+
- label: Helm Chart
14+
- label: Documents
15+
16+
- type: input
17+
id: area-custom
18+
attributes:
19+
label: Other components
20+
description: If the component is not listed above, please tell us here
21+
placeholder: ex. manifest
22+
validations:
23+
required: false
24+
25+
- type: textarea
26+
id: problem
27+
attributes:
28+
label: What happened?
29+
description: |
30+
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: expected
36+
attributes:
37+
label: What did you expect to happen?
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: repro
43+
attributes:
44+
label: How can we reproduce it (as minimally and precisely as possible)?
45+
validations:
46+
required: false
47+
48+
- type: textarea
49+
id: additional
50+
attributes:
51+
label: Anything else we need to know?
52+
53+
- type: textarea
54+
id: kubeVersion
55+
attributes:
56+
label: Kubernetes version
57+
value: |
58+
<details>
59+
60+
```console
61+
$ kubectl version
62+
# paste output here
63+
```
64+
65+
</details>
66+
validations:
67+
required: true
68+
69+
- type: textarea
70+
id: schedulerPluginsVersion
71+
attributes:
72+
label: Scheduler Plugins version
73+
value: |
74+
<details>
75+
76+
</details>
77+
validations:
78+
required: true

0 commit comments

Comments
 (0)