|
| 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. |
0 commit comments