Skip to content

Commit 2d0d193

Browse files
authored
Update bug report template to use issue form fields (#6269)
1 parent 9adee8c commit 2d0d193

File tree

2 files changed

+121
-32
lines changed

2 files changed

+121
-32
lines changed
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
labels: ["bug", "ready for refinement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: dropdown
11+
id: version
12+
attributes:
13+
label: Version
14+
description: What version of our F5 NGINX Ingress Controller are you running?
15+
options:
16+
- edge
17+
- 3.6.2
18+
- 3.6.1
19+
- 3.6.0
20+
- 3.5.2
21+
- 3.5.1
22+
- 3.5.0
23+
- 3.4.3
24+
- 3.4.2
25+
- 3.4.1
26+
- 3.4.0
27+
- 3.3.2
28+
- 3.3.1
29+
- 3.3.0
30+
- 3.2.1
31+
- 3.2.0
32+
- 3.1.1
33+
- 3.1.0
34+
- 3.0.2
35+
- 3.0.1
36+
- 3.0.0
37+
- 2.4.2
38+
- 2.4.1
39+
- 2.4.0
40+
- 2.3.1
41+
- 2.3.0
42+
- 2.2.2
43+
- 2.2.1
44+
- 2.2.0
45+
- 2.1.2
46+
- 2.1.1
47+
- 2.1.0
48+
- 2.0.3
49+
- 2.0.2
50+
- 2.0.1
51+
- 2.0.0
52+
default: 0
53+
validations:
54+
required: true
55+
- type: dropdown
56+
id: platform
57+
attributes:
58+
label: What Kubernetes platforms are you running on?
59+
options:
60+
- Kind
61+
- Minikube
62+
- Rancher
63+
- EKS Amazon
64+
- AKS Azure
65+
- GKE Google Cloud
66+
- Openshift
67+
- Other
68+
default: 0
69+
validations:
70+
required: true
71+
- type: textarea
72+
id: describe-bug
73+
attributes:
74+
label: What happened?
75+
description: Add as much details about the bug as you can.
76+
placeholder: Tell is what you see!
77+
validations:
78+
required: true
79+
- type: textarea
80+
id: steps-to-reproduce
81+
attributes:
82+
label: Steps to reproduce
83+
description: These steps will help us best reproduce the issue and come to a resolution.
84+
placeholder: |
85+
1. Deploy x to '...' using some.yaml
86+
2. View logs on '....'
87+
3. See error
88+
validations:
89+
required: false
90+
- type: textarea
91+
id: expected-behaviour
92+
attributes:
93+
label: Expected behaviour
94+
description: How did you expect the product/feature to behave?
95+
placeholder: What way did you expect this to behave?
96+
validations:
97+
required: false
98+
- type: textarea
99+
id: kubernetes-describe-output
100+
attributes:
101+
label: Kubectl Describe output
102+
description: Please run `kubectl describe` on any relevant Kubernetes resources. e.g. `kubectl describe deployment my-nginx-ingress-controller-deployment`. This will be automatically formatted into code, so no need for backticks.
103+
render: shell
104+
validations:
105+
required: false
106+
- type: textarea
107+
id: logs
108+
attributes:
109+
label: Log output
110+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
111+
render: shell
112+
validations:
113+
required: false
114+
- type: checkboxes
115+
id: terms
116+
attributes:
117+
label: Contributing Guidelines
118+
description: By submitting this issue, you agree that you have read the [Report a Bug](https://github.com/nginxinc/kubernetes-ingress/blob/main/CONTRIBUTING.md#report-a-bug) section of our [Contributing Guidelines](https://github.com/nginxinc/kubernetes-ingress/blob/main/CONTRIBUTING.md)
119+
options:
120+
- label: I confirm that I have read the Report a Bug section of the Contributing Guidelines
121+
required: true

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)