From 1d1a15155371f0a46c8875b1b3b9a068611b28bc Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Thu, 9 Aug 2018 15:13:37 +0100 Subject: [PATCH] Add additional issue template types --- .github/ISSUE_TEMPLATE.md | 22 ----------------- .github/ISSUE_TEMPLATE/bug.md | 30 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 25 +++++++++++++++++++ 3 files changed, 55 insertions(+), 22 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/bug.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 8eb18c500..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,22 +0,0 @@ -**Is this a BUG REPORT or FEATURE REQUEST?**: - -> Uncomment only one, leave it on its own line: -> -> /kind bug -> /kind feature - - -**What happened**: - -**What you expected to happen**: - -**How to reproduce it (as minimally and precisely as possible)**: - - -**Anything else we need to know?**: - -**Environment**: -- Kubernetes version (use `kubectl version`): -- Cloud provider or hardware configuration**: -- Install tools: -- Others: diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md new file mode 100644 index 000000000..bec1ff596 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Report a bug to help us improve cert-manager + +--- + +> Bugs should be filed for issues encountered whilst operating cert-manager. +> You should first attempt to resolve your issues through the community support +> channels, e.g. Slack, in order to rule out individual configuration errors. +> Please provide as much detail as possible. + +**Describe the bug**: +A clear and concise description of what the bug is. + +**Expected behaviour**: +A concise description of what you expected to happen. + +**Steps to reproduce the bug**: +Steps to reproduce the bug should be clear and easily reproducible to help people +gain an understanding of the problem. + +**Anything else we need to know?**: + +**Environment details:**: +- Kubernetes version (e.g. v1.10.2): +- Cloud-provider/provisioner (e.g. GKE, kops AWS, etc): +- cert-manager version (e.g. v0.4.0): +- Install method (e.g. helm or static manifests): + +/kind bug diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000..f90297273 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,25 @@ +--- +name: Feature request +about: Suggest an idea to improve cert-manager + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context about the feature request here. + +**Environment details (if applicable)**: +- Kubernetes version (e.g. v1.10.2): +- Cloud-provider/provisioner (e.g. GKE, kops AWS, etc): +- cert-manager version (e.g. v0.4.0): +- Install method (e.g. helm or static manifests): + +/kind feature