summaryrefslogtreecommitdiffhomepage
path: root/.github/ISSUE_TEMPLATE/bug_report.yml
blob: f096ad598b28a4775a2af2ea4e8d8524cc69cc10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Bug report
description: Create a bug report to help us improve
labels:
  - 'type: bug'
body:
  - type: textarea
    id: description
    attributes:
      label: Description
      description: >
        A clear description of the bug. If possible, explicitly indicate the
        expected behavior vs. the observed behavior.
      placeholder: Describe the problem.
    validations:
      required: true
  - type: textarea
    id: repro
    attributes:
      label: Steps to reproduce
      description: >
        If available, please include detailed reproduction steps.

        If the bug requires software that is not publicly available, see if it
        can be reproduced with software that is publicly available.
      placeholder: How can others reproduce the issue?
  - type: markdown
    attributes:
      value: |
        # Environment

        Please include the following details of your environment.
  - type: textarea
    id: runscVersion
    attributes:
        label: "runsc version"
        placeholder: "`runsc -version`"
        render: shell
  - type: textarea
    id: docker
    attributes:
        label: "docker version (if using docker)"
        placeholder: "`docker version` or `docker info`"
        render: shell
  - type: input
    id: uname
    attributes:
        label: "uname"
        placeholder: "`uname -a`"
  - type: textarea
    id: kubectl
    attributes:
        label: "kubectl (if using Kubernetes)"
        placeholder: "`kubectl version` and `kubectl get nodes`"
        render: shell
  - type: input
    id: gitDescribe
    attributes:
        label: "repo state (if built from source)"
        placeholder: "`git describe`"
  - type: textarea
    id: runscLogs
    attributes:
        label: "runsc debug logs (if available)"
        description: >
          See the [debug guide](https://gvisor.dev/docs/user_guide/debugging/)
          to learn about logging.
        render: shell