-
Notifications
You must be signed in to change notification settings - Fork 177
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 #1549 from tnozicka/gh-templates
Update GitHub issue templates
- Loading branch information
Showing
5 changed files
with
105 additions
and
62 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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Bug Report | ||
description: Report a bug encountered with Scylla Operator | ||
labels: kind/bug | ||
body: | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What happened? | ||
description: | | ||
Please provide as much info as possible. Ensuring all details are shared in your report will help us address your bug in a timely manner. | ||
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: operatorVersion | ||
attributes: | ||
label: Scylla Operator version | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: kubernetesPlatform | ||
attributes: | ||
label: Kubernetes platform name and version | ||
value: | | ||
<details> | ||
```console | ||
$ kubectl version | ||
# paste output here | ||
``` | ||
Kubernetes platform info: | ||
</details> | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: must-gather | ||
attributes: | ||
label: | | ||
Please attach the must-gather archive. The must-gather archive is a **mandatory** part of every bug report. | ||
See https://operator.docs.scylladb.com/stable/support/must-gather.html to learn how you can collect it. | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: 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,18 @@ | ||
name: CI Flake | ||
description: Report CI jobs that flaked | ||
labels: kind/flake | ||
body: | ||
- type: textarea | ||
id: jobref | ||
attributes: | ||
label: Link to the job that flaked. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: details | ||
attributes: | ||
label: Snippet of what failed. | ||
description: Insert a short snippet of what failed to have a quick preview (stack trace) and something to track even if logs are gone. | ||
validations: | ||
required: true |
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: Feature request | ||
description: Create a feature request | ||
labels: kind/feature | ||
body: | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: What should the feature do? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: What is the use case behind this feature? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Anything else we need to know? |
This file was deleted.
Oops, something went wrong.