From ba1d8a60c9384ea56ab7603c19599c88131eea39 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 28 Dec 2023 03:48:34 -0700 Subject: [PATCH] Add Virtualization/Proxmox/ProxmoxVE.md --- Virtualization/Proxmox/ProxmoxVE.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Virtualization/Proxmox/ProxmoxVE.md diff --git a/Virtualization/Proxmox/ProxmoxVE.md b/Virtualization/Proxmox/ProxmoxVE.md new file mode 100644 index 0000000..ed383bb --- /dev/null +++ b/Virtualization/Proxmox/ProxmoxVE.md @@ -0,0 +1,15 @@ +## Deploying a ProxmoxVE Cluster +Proxmox Virtual Environment is an open source server virtualization management solution based on QEMU/KVM and LXC. You can manage virtual machines, containers, highly available clusters, storage and networks with an integrated, easy-to-use web interface or via CLI. + +!!! note + This document assumes you have a storage server that hosts both ISO files via CIFS/SMB share, and has the ability to set up an iSCSI LUN (VM & Container storage). This document assumes that you are using a TrueNAS Core server to host both of these services. + +### Create the first Node +You will need to download the [Proxmox VE 8.1 ISO Installer](https://www.proxmox.com/en/downloads) from the Official Proxmox Website. Once it is downloaded, you can use [Balena Etcher](https://etcher.balena.io/#download-etcher) or [Rufus](https://rufus.ie/en/) to deploy Proxmox onto a server. + +!!! note + If you are virtualizing Proxmox under a Hyper-V environment, you will want to follow the [Official Documentation](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/user-guide/enable-nested-virtualization) to ensure that nested virtualization is enabled. An example is listed below: + ``` powershell + Set-VMProcessor -VMName -ExposeVirtualizationExtensions $true + Get-VMNetworkAdapter -VMName | Set-VMNetworkAdapter -MacAddressSpoofing On + ``` \ No newline at end of file