mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Add feature request and test flake template to stop users from using wrong or empty template Redirect questions to discuss page to remove load from maintainers. Remove distributors appliations as they are not used at all. Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
93 lines
2.1 KiB
YAML
93 lines
2.1 KiB
YAML
name: Bug Report
|
|
description: Report a bug encountered while operating Etcd
|
|
labels:
|
|
- type/bug
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Please read https://github.com/etcd-io/etcd/blob/main/Documentation/contributor-guide/reporting_bugs.md
|
|
If this matter is security related, please disclose it privately via security@etcd.io.
|
|
Please fill the form below and provide as much information as possible.
|
|
Not doing so may result in your bug not being addressed in a timely manner.
|
|
|
|
- type: textarea
|
|
id: problem
|
|
attributes:
|
|
label: What happened?
|
|
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: etcdVersion
|
|
attributes:
|
|
label: Etcd version (please run commands below)
|
|
value: |
|
|
<details>
|
|
|
|
```console
|
|
$ etcd --version
|
|
# paste output here
|
|
|
|
$ etcdctl version
|
|
# paste output here
|
|
```
|
|
|
|
</details>
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: config
|
|
attributes:
|
|
label: Etcd configuration (command line flags or environment variables)
|
|
value: |
|
|
<details>
|
|
|
|
# paste your configuration here
|
|
|
|
</details>
|
|
|
|
- type: textarea
|
|
id: etcdDebugInformation
|
|
attributes:
|
|
label: Etcd debug information (please run commands blow, feel free to obfuscate the IP address or FQDN in the output)
|
|
value: |
|
|
<details>
|
|
|
|
```console
|
|
$ etcdctl member list -w table
|
|
# paste output here
|
|
|
|
$ etcdctl --endpoints=<member list> endpoint status -w table
|
|
# paste output here
|
|
```
|
|
|
|
</details>
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log output
|
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
render: shell
|