Skip to content

Commit e8414f4

Browse files
authored
Update issue template to not require specific format (#1303)
Signed-off-by: Ludvig Liljenberg <4257730+ludfjig@users.noreply.github.com>
1 parent 6a44de0 commit e8414f4

File tree

2 files changed

+63
-80
lines changed

2 files changed

+63
-80
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug in Hyperlight
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
### What happened?
10+
11+
TODO: A clear and concise description of what the bug is.
12+
13+
### Steps to Reproduce
14+
15+
1. Run '...'
16+
2. And then do '...'
17+
3. Check logs for '...'
18+
19+
### Expected Results
20+
21+
TODO: What did you expect to happen?
22+
23+
### Actual Results
24+
25+
TODO: What actually happened?
26+
27+
### Versions and Environment
28+
29+
Hyperlight version or commit: TODO
30+
31+
#### OS Version
32+
33+
Run the following to find your OS version:
34+
35+
Linux:
36+
```console
37+
cat /etc/os-release && uname -a
38+
```
39+
40+
Windows (PowerShell):
41+
```powershell
42+
cmd /c ver
43+
```
44+
45+
#### Hypervisor
46+
47+
Run the following to check hypervisor access:
48+
49+
Linux:
50+
```console
51+
ls -la /dev/kvm /dev/mshv 2>&1; getfacl /dev/kvm /dev/mshv 2>&1; id
52+
[ -r /dev/kvm ] && [ -w /dev/kvm ] && echo "KVM: OK" || echo "KVM: FAIL"
53+
[ -r /dev/mshv ] && [ -w /dev/mshv ] && echo "MSHV: OK" || echo "MSHV: FAIL"
54+
```
55+
56+
Windows (Admin PowerShell):
57+
```powershell
58+
Get-WindowsOptionalFeature -Online | Where-Object {$_.FeatureName -match 'Hyper-V|HypervisorPlatform|VirtualMachinePlatform'} | Format-Table
59+
```
60+
61+
### Extra Info
62+
63+
Anything else you'd like to add?

.github/ISSUE_TEMPLATE/bug.yaml

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

0 commit comments

Comments
 (0)