Skip to content

Commit

Permalink
Describe how to enable & check nested virtualisation (#229)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt committed Dec 13, 2023
1 parent 9f8d1c1 commit 120847c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions docs/guides/configuration-guide/openstack/nova.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
sidebar_label: Nova
---

# Nova

## Nested virtualisation

### AMD

```
echo "options kvm-amd nested=1" | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
sudo modprobe -r kvm_amd
sudo modprobe kvm_amd
cat /sys/module/kvm_amd/parameters/nested
1
docker restart nova_libvirt
```

### Intel

```
echo "options kvm-intel nested=1" | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
sudo modprobe -r kvm_intel
sudo modprobe kvm_intel
cat /sys/module/kvm_intel/parameters/nested
1
docker restart nova_libvirt
```

0 comments on commit 120847c

Please sign in to comment.