From 80ff9695ff77a77b8d6eb6452d52f2f4d983f6a0 Mon Sep 17 00:00:00 2001 From: siddharth Date: Thu, 1 Oct 2020 07:09:54 +0530 Subject: [PATCH 1/2] chore : Added PR and Issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 37 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 26 ++++++++++++++++ .github/pull_request_template.md | 21 +++++++++++++ 3 files changed, 84 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..a7a98bb4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,37 @@ +--- +name: Bug Report +about: Report a bug encountered while operating on cstor-csi volumes +labels: kind/bug + +--- + + + +**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 + +**The output of the following commands will help us better understand what's going on**: + + +* `kubectl get cstorvolume -n -o yaml` +* `kubectl get cstorvolumeconfig -n -o yaml` +* `kubectl logs sts/openebs-cstor-csi-controller -n kube-system -c openebs-csi-plugin` +* `kubectl logs ds/openebs-cstor-csi-node -n kube-system -c openebs-csi-plugin` +* `kubectl get pods -n ` + +**Anything else we need to know?:** +Add any other context about the problem here. + +**Environment details:** +- OpenEBS version (use `kubectl get po -n openebs --show-labels`): +- Kubernetes version (use `kubectl version`): +- Cloud provider or hardware configuration: +- OS (e.g: `cat /etc/os-release`): +- kernel (e.g: `uname -a`): +- others: \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..e645cf16 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,26 @@ +--- +name: Feature request +about: Suggest an idea to improve cstor-csi driver +labels: Enhancement + +--- + +**Describe the problem/challenge you have** +[A description of the current limitation/problem/challenge that you are experiencing.] + + +**Describe the solution you'd like** +[A clear and concise description of what you want to happen.] + + +**Anything else you would like to add:** +[Miscellaneous information that will assist in solving the issue.] + + +**Environment:** +- OpenEBS version (use `kubectl get po -n openebs --show-labels`): +- Kubernetes version (use `kubectl version`): +- Cloud provider or hardware configuration: +- OS (e.g: `cat /etc/os-release`): +- kernel (e.g: `uname -a`): +- others: \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..2cd6f0a6 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,21 @@ + + +**What this PR does**: + +**Which issue(s) this PR fixes**: +Fixes # + + +**Special notes for your reviewer**: + +**Checklist** +- [ ] PR messages has document related information +- [ ] Labelled this PR & related issue with `documentation` tag +- [ ] PR messages has breaking changes related information +- [ ] PR messages has upgrade related information +- [ ] Labelled this PR & related issue with `requires-upgrade` tag +- [ ] Tests updated \ No newline at end of file From 13e11831c60b7c29becdca15311bb60ad79fcc38 Mon Sep 17 00:00:00 2001 From: siddharth Date: Thu, 1 Oct 2020 11:13:01 +0530 Subject: [PATCH 2/2] chore : Added PR and Issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 9 +++------ .github/ISSUE_TEMPLATE/feature-request.md | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index a7a98bb4..99dc526b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: Bug Report -about: Report a bug encountered while operating on cstor-csi volumes +about: Report a bug encountered while upgrading openebs volumes/pools labels: kind/bug --- @@ -19,11 +19,8 @@ Steps to reproduce the bug should be clear and easily reproducible to help peopl **The output of the following commands will help us better understand what's going on**: -* `kubectl get cstorvolume -n -o yaml` -* `kubectl get cstorvolumeconfig -n -o yaml` -* `kubectl logs sts/openebs-cstor-csi-controller -n kube-system -c openebs-csi-plugin` -* `kubectl logs ds/openebs-cstor-csi-node -n kube-system -c openebs-csi-plugin` -* `kubectl get pods -n ` +* `kubectl get pods -n --show-labels` +* `kubectl logs -n ` **Anything else we need to know?:** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index e645cf16..9e735da6 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,6 +1,6 @@ --- name: Feature request -about: Suggest an idea to improve cstor-csi driver +about: Suggest an idea to improve openebs upgrades labels: Enhancement ---