File tree Expand file tree Collapse file tree 2 files changed +63
-80
lines changed
Expand file tree Collapse file tree 2 files changed +63
-80
lines changed Original file line number Diff line number Diff line change 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?
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments