-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #782 from feiskyer/template
chore: update github issue templates
- Loading branch information
Showing
8 changed files
with
134 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,30 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve this project | ||
about: Report a bug encountered while operating Kubernetes | ||
labels: kind/bug | ||
|
||
--- | ||
|
||
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! | ||
If the matter is security related, please disclose it privately via https://kubernetes.io/security/ | ||
--> | ||
|
||
|
||
**What happened**: | ||
#### What happened: | ||
|
||
#### What you expected to happen: | ||
|
||
**What you expected to happen**: | ||
#### How to reproduce it (as minimally and precisely as possible): | ||
|
||
**How to reproduce it**: | ||
#### Anything else we need to know?: | ||
|
||
**Anything else we need to know?**: | ||
#### Environment: | ||
|
||
**Environment**: | ||
- Kubernetes version (use `kubectl version`): | ||
- OS (e.g. from /etc/os-release): | ||
- Cloud provider or hardware configuration: | ||
- OS (e.g: `cat /etc/os-release`): | ||
- Kernel (e.g. `uname -a`): | ||
- Install tools: | ||
- Network plugin and version (if this is a network-related bug): | ||
- Others: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
--- | ||
name: Enhancement Request | ||
about: Suggest an idea for this project | ||
name: Enhancement Tracking Issue | ||
about: Provide supporting details for a feature in development | ||
labels: kind/feature | ||
|
||
--- | ||
<!-- Feature requests are unlikely to make progress as an issue. | ||
Instead, please suggest enhancements by engaging with SIGs on slack and mailing lists. | ||
**Is your feature request related to a problem?/Why is this needed** | ||
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> | ||
A proposal that works through the design along with the implications of the change can be opened as a KEP: | ||
https://git.k8s.io/enhancements/keps#kubernetes-enhancement-proposals-keps | ||
--> | ||
|
||
**Describe the solution you'd like in detail** | ||
<!-- A clear and concise description of what you want to happen. --> | ||
#### What would you like to be added: | ||
|
||
**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 or screenshots about the feature request here. --> | ||
#### Why is this needed: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Failing Test | ||
about: Report continuously failing tests or jobs in Kubernetes CI | ||
labels: kind/failing-test | ||
|
||
--- | ||
|
||
<!-- Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI --> | ||
|
||
#### Which jobs are failing: | ||
|
||
#### Which test(s) are failing: | ||
|
||
#### Since when has it been failing: | ||
|
||
#### Testgrid link: | ||
|
||
#### Reason for failure: | ||
|
||
#### Anything else we need to know: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Flaking Test | ||
about: Report flaky tests or jobs in Kubernetes CI | ||
labels: kind/flake | ||
|
||
--- | ||
|
||
<!-- Please only use this template for submitting reports about flaky tests or jobs (pass or fail with no underlying change in code) in Kubernetes CI --> | ||
|
||
#### Which jobs are flaking: | ||
|
||
#### Which test(s) are flaking: | ||
|
||
#### Testgrid link: | ||
|
||
#### Reason for failure: | ||
|
||
#### Anything else we need to know: | ||
- links to go.k8s.io/triage appreciated | ||
- links to specific failures in spyglass appreciated | ||
|
||
<!-- Please see the deflaking doc (https://github.com/kubernetes/community/blob/master/contributors/devel/sig-testing/flaky-tests.md) for more guidance! --> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,72 @@ | ||
<!-- Thanks for sending a pull request! Here are some tips for you: | ||
1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide | ||
1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide/first-contribution.md#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide | ||
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here: | ||
https://git.k8s.io/community/contributors/devel/release.md#issue-kind-label | ||
3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/testing.md | ||
https://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label | ||
3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/sig-testing/testing.md | ||
4. If you want *faster* PR reviews, read how: https://git.k8s.io/community/contributors/guide/pull-requests.md#best-practices-for-faster-reviews | ||
5. Follow the instructions for writing a release note: https://git.k8s.io/community/contributors/guide/release-notes.md | ||
6. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests | ||
5. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests | ||
--> | ||
|
||
**What type of PR is this?** | ||
> Uncomment only one ` /kind <>` line, hit enter to put that in a new line, and remove leading whitespaces from that line: | ||
> | ||
> /kind api-change | ||
> /kind bug | ||
> /kind cleanup | ||
> /kind design | ||
> /kind documentation | ||
> /kind failing-test | ||
> /kind feature | ||
> /kind flake | ||
**What this PR does / why we need it**: | ||
|
||
**Which issue(s) this PR fixes**: | ||
<!-- | ||
#### What type of PR is this? | ||
|
||
<!-- | ||
Add one of the following kinds: | ||
/kind bug | ||
/kind cleanup | ||
/kind documentation | ||
/kind feature | ||
/kind design | ||
Optionally add one or more of the following kinds if applicable: | ||
/kind api-change | ||
/kind deprecation | ||
/kind failing-test | ||
/kind flake | ||
/kind regression | ||
--> | ||
|
||
#### What this PR does / why we need it: | ||
|
||
#### Which issue(s) this PR fixes: | ||
<!-- | ||
*Automatically closes linked issue when PR is merged. | ||
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. | ||
_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_* | ||
--> | ||
Fixes # | ||
|
||
**Special notes for your reviewer**: | ||
#### Special notes for your reviewer: | ||
|
||
#### Does this PR introduce a user-facing change? | ||
<!-- | ||
If no, just write "NONE" in the release-note block below. | ||
If yes, a release note is required: | ||
Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required". | ||
For more information on release notes see: https://git.k8s.io/community/contributors/guide/release-notes.md | ||
--> | ||
```release-note | ||
**Release note**: | ||
``` | ||
|
||
#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: | ||
|
||
<!-- | ||
This section can be blank if this pull request does not require a release note. | ||
When adding links which point to resources within git repositories, like | ||
KEPs or supporting documentation, please reference a specific commit and avoid | ||
linking directly to the master branch. This ensures that links reference a | ||
specific point in time, rather than a document that may change over time. | ||
See here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files | ||
Please use the following format for linking documentation: | ||
- [KEP]: <link> | ||
- [Usage]: <link> | ||
- [Other doc]: <link> | ||
--> | ||
```docs | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Information about supported Kubernetes versions can be found on the | ||
[Kubernetes version and version skew support policy] page on the Kubernetes website. | ||
|
||
## Reporting a Vulnerability | ||
|
||
Instructions for reporting a vulnerability can be found on the | ||
[Kubernetes Security and Disclosure Information] page. | ||
|
||
[Kubernetes version and version skew support policy]: https://kubernetes.io/docs/setup/release/version-skew-policy/#supported-versions | ||
[Kubernetes Security and Disclosure Information]: https://kubernetes.io/docs/reference/issues-security/security/#report-a-vulnerability |