From 6b6a92a24bd902cfb145c36ae126db824661a1e0 Mon Sep 17 00:00:00 2001 From: niusmallnan Date: Wed, 2 Jan 2019 16:00:53 +0800 Subject: [PATCH 1/2] Support for booting ROS via hyper-v machine driver --- .../workstation/docker-machine/_index.md | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md b/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md index 25dbad82d17..f671df51a0d 100644 --- a/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md +++ b/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md @@ -10,13 +10,14 @@ You also need to know the [memory requirements]({{< baseurl >}}/os/v1.x/en/#hard ### Downloading RancherOS -Get the latest ISO artifact from the RancherOS [releases](https://github.com/rancher/os/releases). +Get the latest ISO artifact from the RancherOS [releases](https://github.com/rancher/os). -Machine Driver | ISO Name --------------- | -------------------- -VirtualBox | rancheros.iso -VMWare VSphere | rancheros-vmware.iso -VMWare Fusion | rancheros-vmware.iso +Machine Driver | Recommended RancherOS version | ISO File +-------------- | ----------------------------- | ------------------------------------------------------------- +VirtualBox | >=v1.0.0 | [rancheros.iso](https://releases.rancher.com/os/latest/rancheros.iso) +VMWare VSphere | >=v1.4.0 | [rancheros-vmware.iso](https://releases.rancher.com/os/latest/rancheros-vmware.iso) +VMWare Fusion | >=v1.4.0 | [rancheros-vmware.iso](https://releases.rancher.com/os/latest/rancheros-vmware.iso) +Hyper-V | >=v1.5.0 | [rancheros.iso](https://releases.rancher.com/os/latest/hyperv/rancheros.iso) ### Using Docker Machine @@ -87,6 +88,20 @@ $ docker-machine create -d vmwarefusion \ That’s it! You should now have a RancherOS host running on VMWare Fusion. You can verify that you have a VMWare Fusion VM running on your host. +#### Using Docker Machine with Hyper-V + +_Available as of v1.5_ + +You should refer to the documentation of [Hyper-V driver](https://docs.docker.com/machine/drivers/hyper-v/), here is an example of using the RancherOS latest link: + +``` +$ docker-machine.exe create -d hyperv \ + --hyperv-memory 2048 \ + --hyperv-boot2docker-url https://releases.rancher.com/os/latest/hyperv/rancheros.iso + --hyperv-virtual-switch \ + +``` + ### Logging into RancherOS Logging into RancherOS follows the standard Docker Machine commands. To login into your newly provisioned RancherOS VM. From f3fcd31a9b89a5fbe361d6a78afbcd204d3b76a7 Mon Sep 17 00:00:00 2001 From: Denise Date: Wed, 30 Jan 2019 14:28:47 -0800 Subject: [PATCH 2/2] Update _index.md --- .../running-rancheros/workstation/docker-machine/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md b/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md index f671df51a0d..92eb9a51b7d 100644 --- a/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md +++ b/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md @@ -92,7 +92,7 @@ That’s it! You should now have a RancherOS host running on VMWare Fusion. You _Available as of v1.5_ -You should refer to the documentation of [Hyper-V driver](https://docs.docker.com/machine/drivers/hyper-v/), here is an example of using the RancherOS latest link: +You should refer to the documentation of [Hyper-V driver](https://docs.docker.com/machine/drivers/hyper-v/), here is an example of using the latest RancherOS URL. We recommend using a specific version so you know which version of RancherOS that you are installing. ``` $ docker-machine.exe create -d hyperv \