summaryrefslogtreecommitdiff
path: root/docs/installation
diff options
context:
space:
mode:
authorJeff Loughridge <jeffl@konekti.us>2021-09-01 20:55:57 +0000
committerJeff Loughridge <jeffl@konekti.us>2021-09-01 20:55:57 +0000
commita7b1808a073192e86c13b6b34e09d7c753bf5df0 (patch)
treea26b0bd4ce39826d103b1d57a6064b53e92ce95f /docs/installation
parent8dbb31024203318600fe950ad4f1e209cd31cf07 (diff)
downloadvyos-documentation-a7b1808a073192e86c13b6b34e09d7c753bf5df0.tar.gz
vyos-documentation-a7b1808a073192e86c13b6b34e09d7c753bf5df0.zip
Enhance proxmox installation instructions
Diffstat (limited to 'docs/installation')
-rw-r--r--docs/installation/virtual/proxmox.rst42
1 files changed, 36 insertions, 6 deletions
diff --git a/docs/installation/virtual/proxmox.rst b/docs/installation/virtual/proxmox.rst
index 3ee9d70a..43c478f5 100644
--- a/docs/installation/virtual/proxmox.rst
+++ b/docs/installation/virtual/proxmox.rst
@@ -1,8 +1,38 @@
-#######
-Proxmox
-#######
+.. _proxmox:
-References
-==========
+******************
+Running on Proxmox
+******************
+
+Proxmox is an open-source platform for virtualization. Users with a support
+subscription can download a qcow2 image that can be imported into Proxmox.
+
+Deploy VyOS from CLI
+====================
+
+
+Copy the qcow2 image to a temporary directory on the Proxmox server.
+
+The commands below assume that virtual machine ID 200 is unused and that
+the user wants the disk stored in a storage pool called `local-lvm`.
+
+.. code-block:: none
+
+ $ qm create 200 --name vyos2 --memory 2048 --net0 virtio,bridge=vmbr0
+ $ qm importdisk 200 vyos-1.2.8-proxmox-2G.qcow2 local-lvm
+ $ qm set 200 --virtio0 local-lvm:vm-200-disk-0
+ $ qm set 200 --boot order=virtio0
+
+Optionally, the user can attach a CDROM with an ISO as a cloud-init data
+source. The below command assumes the ISO has been uploaded to the
+`local` storage pool with the name `seed.iso`.
+
+.. code-block:: none
+
+ $ qm set 101 --ide2 media=cdrom,file=local:iso/seed.iso
+
+Start the virtual machine in the proxmox GUI or CLI using ``qm start 200``.
+
+Visit https://www.proxmox.com/en/ for more information about the download
+and installation of this hypervisor.
-https://www.proxmox.com/en/proxmox-ve \ No newline at end of file