Merge pull request #6320 from kevinGC:issues-template

PiperOrigin-RevId: 385019550
This commit is contained in:
gVisor bot
2021-07-15 15:15:07 -07:00
4 changed files with 91 additions and 50 deletions
-30
View File
@@ -1,30 +0,0 @@
---
name: Bug report
about: Create a bug report to help us improve
title:
labels: 'type: bug'
assignees: ''
---
**Description**
A clear description of what the bug is. If possible, explicitly indicate the
expected behavior vs. the observed behavior.
**Steps to reproduce**
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.
**Environment**
Please include the following details of your environment:
* `runsc -version`
* `docker version` or `docker info` (if available)
* `kubectl version` and `kubectl get nodes` (if using Kubernetes)
* `uname -a`
* `git describe` (if built from source)
* `runsc` debug logs (if available)
+67
View File
@@ -0,0 +1,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
-20
View File
@@ -1,20 +0,0 @@
---
name: Feature request
about: Suggest an idea or improvement
title: ''
labels: 'type: enhancement'
assignees: ''
---
**Description**
A clear description of the feature or enhancement.
**Is this feature related to a specific bug?**
Please include a bug references if yes.
**Do you have a specific solution in mind?**
Please include any details about a solution that you have in mind, including any
alternatives considered.
@@ -0,0 +1,24 @@
name: Feature request
description: Suggest an idea or improvement
labels:
- 'type: enhancement'
body:
- type: textarea
id: description
attributes:
label: Description
placeholder: A clear description of the feature or enhancement.
validations:
required: true
- type: textarea
id: related
attributes:
label: Is this feature related to a specific bug?
description: Please include a bug references if yes.
- type: textarea
id: solution
attributes:
label: Do you have a specific solution in mind?
description: >
Please include any details about a solution that you have in mind,
including any alternatives considered.