Skip to content

Commit 11ab3cb

Browse files
committed
Use issue forms for bug reporting
Signed-off-by: Maksym Pavlenko <[email protected]>
1 parent ebe8f8c commit 11ab3cb

4 files changed

Lines changed: 90 additions & 89 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 73 deletions
This file was deleted.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Bug report
2+
description: Create a bug report to help improve containerd
3+
labels: kind/bug
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
If you are reporting a new issue, make sure that we do not have any duplicates
9+
already open. You can ensure this by searching the issue list for this
10+
repository. If there is a duplicate, please close your issue and add a comment
11+
to the existing issue instead.
12+
13+
Tips:
14+
15+
* If containerd gets stuck on something and enables debug socket, `ctr pprof goroutines`
16+
dumps the golang stack of containerd, which is helpful! If containerd runs
17+
without debug socket, `kill -SIGUSR1 $(pidof containerd)` also dumps the stack
18+
as well.
19+
20+
* If there is something about running containerd, like consuming more CPU resources,
21+
`ctr pprof` subcommands will help you to get some useful profiles. Enable debug
22+
socket makes life easier.
23+
24+
- type: textarea
25+
attributes:
26+
label: Description
27+
description: |
28+
Briefly describe the problem you are having in a few paragraphs.
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
attributes:
34+
label: Steps to reproduce the issue
35+
value: |
36+
1.
37+
2.
38+
3.
39+
40+
- type: textarea
41+
attributes:
42+
label: Describe the results you received and expected
43+
validations:
44+
required: true
45+
46+
- type: input
47+
attributes:
48+
label: What version of containerd are you using?
49+
placeholder: $ containerd --version
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
attributes:
55+
label: Any other relevant information
56+
description: |
57+
runc version, CRI configuration, OS/Kernel version, etc.
58+
Use the following commands:
59+
$ runc --version
60+
$ crictl info
61+
$ uname -a
62+
63+
- type: textarea
64+
attributes:
65+
label: Show configuration if it is related to CRI plugin.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Feature request
2+
description: Suggest an idea for containerd
3+
labels: kind/feature
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: What is the problem you're trying to solve
8+
description: |
9+
A clear and concise description of what the problem is.
10+
validations:
11+
required: true
12+
13+
- type: textarea
14+
attributes:
15+
label: Describe the solution you'd like
16+
description: |
17+
A clear and concise description of what you'd like to happen.
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
attributes:
23+
label: Additional context
24+
description: |
25+
Add any other context about the feature request here.

0 commit comments

Comments
 (0)