Browse Source

Merge pull request #49 from llhuii/add_issue_template

Add two issue templates
tags/v0.2.0
KubeEdge Bot GitHub 4 years ago
parent
commit
d3a647261a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 122 additions and 0 deletions
  1. +111
    -0
      .github/ISSUE_TEMPLATE/bug-report.md
  2. +11
    -0
      .github/ISSUE_TEMPLATE/enhancement.md

+ 111
- 0
.github/ISSUE_TEMPLATE/bug-report.md View File

@@ -0,0 +1,111 @@
---
name: Bug Report
about: Report a bug encountered while operating Sedna
labels: kind/bug

---

<!-- Please use this template while reporting a bug and provide as much info as possible. Thanks!-->
**What happened**:

**What you expected to happen**:

**How to reproduce it (as minimally and precisely as possible)**:

**Anything else we need to know?**:

**Environment**:
<details><summary>Sedna Version</summary>

```console
$ kubectl get -n sedna deploy gm -o jsonpath='{.spec.template.spec.containers[0].image}'
# paste output here

$ kubectl get -n sedna ds lc -o jsonpath='{.spec.template.spec.containers[0].image}'
# paste output here
```

</details>

<details><summary>Kubernets Version</summary>

```console
$ kubectl version
# paste output here
```

</details>

<details><summary>KubeEdge Version</summary>

```console
$ cloudcore --version
# paste output here

$ edgecore --version
# paste output here
```

</details>

**CloudSide Environment**:
<details><summary>Hardware configuration</summary>

```console
$ lscpu
# paste output here
```

</details>

<details><summary>OS</summary>

```console
$ cat /etc/os-release
# paste output here
```

</details>

<details><summary>Kernel</summary>

```console
$ uname -a
# paste output here
```

</details>

<details><summary>Others</summary>
</details>

**EdgeSide Environment**:
<details><summary>Hardware configuration</summary>

```console
$ lscpu
# paste output here
```

</details>

<details><summary>OS</summary>

```console
$ cat /etc/os-release
# paste output here
```

</details>

<details><summary>Kernel</summary>

```console
$ uname -a
# paste output here
```

</details>

<details><summary>Others</summary>
</details>

+ 11
- 0
.github/ISSUE_TEMPLATE/enhancement.md View File

@@ -0,0 +1,11 @@
---
name: Enhancement Request
about: Suggest an enhancement to the Sedna project
labels: kind/feature

---
<!-- Please only use this template for submitting enhancement requests -->

**What would you like to be added/modified**:

**Why is this needed**:

Loading…
Cancel
Save