Skip to content

Commit

Permalink
Use y/Y (#230)
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 120847c commit 07ca889
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guides/configuration-guide/openstack/nova.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ sidebar_label: Nova
### AMD

```
echo "options kvm-amd nested=1" | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
echo "options kvm-amd nested=y" | 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
Y
docker restart nova_libvirt
```

### Intel

```
echo "options kvm-intel nested=1" | sudo tee /etc/modprobe.d/kvm-nested-virtualization.conf
echo "options kvm-intel nested=y" | 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
Y
docker restart nova_libvirt
```

0 comments on commit 07ca889

Please sign in to comment.