Skip to content

Commit

Permalink
Merge pull request #90 from swastik959/issuetemp
Browse files Browse the repository at this point in the history
added issue template
  • Loading branch information
k8s-ci-robot authored Feb 20, 2024
2 parents 797524a + 0729148 commit e1c86cc
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Bug Report
description: Report a bug encountered while operating Kubernetes
labels: kind/bug
body:
- type: textarea
id: problem
attributes:
label: What happened?
description: |
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
If this matter is security related, please disclose it privately via https://kubernetes.io/security
validations:
required: true

- type: textarea
id: expected
attributes:
label: What did you expect to happen?
validations:
required: true

- type: textarea
id: repro
attributes:
label: How can we reproduce it (as minimally and precisely as possible)?
validations:
required: true

- type: textarea
id: additional
attributes:
label: Anything else we need to know?

- type: textarea
id: kubeVersion
attributes:
label: Kubernetes version
value: |
<details>
```console
$ kubectl version
# paste output here
```
</details>
validations:
required: true
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Enhancement Tracking Issue
description: Provide supporting details for a feature in development
labels: kind/feature
body:
- type: textarea
id: feature
attributes:
label: What would you like to be added?
description: |
Feature requests are unlikely to make progress as issues. Please consider engaging with SIGs on slack and mailing lists, instead.
A proposal that works through the design along with the implications of the change can be opened as a KEP.
See https://git.k8s.io/enhancements/keps#kubernetes-enhancement-proposals-keps
validations:
required: true

- type: textarea
id: rationale
attributes:
label: Why is this needed?
validations:
required: true

0 comments on commit e1c86cc

Please sign in to comment.