mirror of https://github.com/kubernetes/kops.git
Merge pull request #5487 from mikesplain/update_templates
Update Issue templates and add PR template
This commit is contained in:
commit
a14ad36eb5
|
|
@ -1,35 +0,0 @@
|
||||||
Thanks for submitting an issue! Please fill in as much of the template below as
|
|
||||||
you can.
|
|
||||||
|
|
||||||
------------- BUG REPORT TEMPLATE --------------------
|
|
||||||
|
|
||||||
1. What `kops` version are you running? The command `kops version`, will display
|
|
||||||
this information.
|
|
||||||
|
|
||||||
2. What Kubernetes version are you running? `kubectl version` will print the
|
|
||||||
version if a cluster is running or provide the Kubernetes version specified as
|
|
||||||
a `kops` flag.
|
|
||||||
|
|
||||||
3. What cloud provider are you using?
|
|
||||||
|
|
||||||
4. What commands did you run? What is the simplest way to reproduce this issue?
|
|
||||||
|
|
||||||
5. What happened after the commands executed?
|
|
||||||
|
|
||||||
6. What did you expect to happen?
|
|
||||||
|
|
||||||
7. Please provide your cluster manifest. Execute
|
|
||||||
`kops get --name my.example.com -o yaml` to display your cluster manifest.
|
|
||||||
You may want to remove your cluster name and other sensitive information.
|
|
||||||
|
|
||||||
8. Please run the commands with most verbose logging by adding the `-v 10` flag.
|
|
||||||
Paste the logs into this report, or in a gist and provide the gist link here.
|
|
||||||
|
|
||||||
9. Anything else do we need to know?
|
|
||||||
|
|
||||||
|
|
||||||
------------- FEATURE REQUEST TEMPLATE --------------------
|
|
||||||
|
|
||||||
1. Describe IN DETAIL the feature/behavior/change you would like to see.
|
|
||||||
|
|
||||||
2. Feel free to provide a design supporting your feature request.
|
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**1. What `kops` version are you running? The command `kops version`, will display
|
||||||
|
this information.**
|
||||||
|
|
||||||
|
**2. What Kubernetes version are you running? `kubectl version` will print the
|
||||||
|
version if a cluster is running or provide the Kubernetes version specified as
|
||||||
|
a `kops` flag.**
|
||||||
|
|
||||||
|
**3. What cloud provider are you using?**
|
||||||
|
|
||||||
|
**4. What commands did you run? What is the simplest way to reproduce this issue?**
|
||||||
|
|
||||||
|
**5. What happened after the commands executed?**
|
||||||
|
|
||||||
|
**6. What did you expect to happen?**
|
||||||
|
|
||||||
|
**7. Please provide your cluster manifest. Execute
|
||||||
|
`kops get --name my.example.com -o yaml` to display your cluster manifest.
|
||||||
|
You may want to remove your cluster name and other sensitive information.**
|
||||||
|
|
||||||
|
**8. Please run the commands with most verbose logging by adding the `-v 10` flag.
|
||||||
|
Paste the logs into this report, or in a gist and provide the gist link here.**
|
||||||
|
|
||||||
|
**9. Anything else do we need to know?**
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
name: Feature Request
|
||||||
|
about: Help us identify features you need
|
||||||
|
---
|
||||||
|
|
||||||
|
**1. Describe IN DETAIL the feature/behavior/change you would like to see.**
|
||||||
|
|
||||||
|
**2. Feel free to provide a design supporting your feature request.**
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
<!--
|
||||||
|
Thanks for contributing to kubernetes/kops! Here are some tips for you:
|
||||||
|
1. If this is your first time, read our contributor guidelines:
|
||||||
|
|
||||||
|
https://git.k8s.io/kops/CONTRIBUTING.md
|
||||||
|
|
||||||
|
2. Also, you'll probably want to checkout our development documentation:
|
||||||
|
|
||||||
|
https://git.k8s.io/kops/docs/development
|
||||||
|
|
||||||
|
3. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests
|
||||||
|
|
||||||
|
4. Finally, make sure all verifications and tests pass by running:
|
||||||
|
```
|
||||||
|
make pr
|
||||||
|
```
|
||||||
|
-->
|
||||||
|
|
||||||
|
**What this PR does / why we need it**:
|
||||||
|
|
||||||
|
**Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
|
||||||
|
|
||||||
|
|
||||||
|
**Special notes for your reviewer**:
|
||||||
5
Makefile
5
Makefile
|
|
@ -539,6 +539,11 @@ verify-bazel:
|
||||||
ci: govet verify-gofmt verify-boilerplate verify-bazel verify-misspelling nodeup examples test | verify-gendocs verify-packages verify-apimachinery
|
ci: govet verify-gofmt verify-boilerplate verify-bazel verify-misspelling nodeup examples test | verify-gendocs verify-packages verify-apimachinery
|
||||||
echo "Done!"
|
echo "Done!"
|
||||||
|
|
||||||
|
.PHONY: pr
|
||||||
|
pr:
|
||||||
|
@echo "Test passed!"
|
||||||
|
@echo "Feel free to open your pr at https://github.com/kubernetes/kops/compare"
|
||||||
|
|
||||||
# --------------------------------------------------
|
# --------------------------------------------------
|
||||||
# channel tool
|
# channel tool
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue