diff --git a/content/os/v1.x/en/installation/running-rancheros/cloud/vmware-esxi/_index.md b/content/os/v1.x/en/installation/running-rancheros/cloud/vmware-esxi/_index.md index 8daae41533b..577216e2300 100644 --- a/content/os/v1.x/en/installation/running-rancheros/cloud/vmware-esxi/_index.md +++ b/content/os/v1.x/en/installation/running-rancheros/cloud/vmware-esxi/_index.md @@ -5,22 +5,31 @@ weight: 108 As of v1.1.0, RancherOS automatically detects that it is running on VMware ESXi, and automatically adds the `open-vm-tools` service to be downloaded and started, and uses `guestinfo` keys to set the cloud-init data. +As of v1.5.0, We release all stuff for vmware, it will include initrd, regular ISO for vmware, vmdk image, and so on. The open-vm-tools has been built in RancherOS, you don't need to download it. + +| Description | URL Link | +|---|---| +| Booting from ISO | https://releases.rancher.com/os/latest/vmware/rancheros.iso | +| For docker-machine | https://releases.rancher.com/os/latest/vmware/rancheros-autoformat.iso | +| VMDK | https://releases.rancher.com/os/latest/vmware/rancheros.vmdk | +| Initrd | https://releases.rancher.com/os/latest/vmware/initrd | + ### VMware guestinfo | VARIABLE | TYPE | |---|---| | `hostname` | hostname | -| `interface..name` | string | -| `interface..mac` | MAC address (is used to match the ethernet device's MAC address, not to set it) | -| `interface..dhcp` | {"yes", "no"} | -| `interface..role` | {"public", "private"} | -| `interface..ip..address` | CIDR IP address | -| `interface..route..gateway` | IP address | -| `interface..route..destination` | CIDR IP address (not available yet) | +| `interface..name` | string | +| `interface..mac` | MAC address (is used to match the ethernet device's MAC address, not to set it) | +| `interface..dhcp` | {"yes", "no"} | +| `interface..role` | {"public", "private"} | +| `interface..ip..address` | CIDR IP address | +| `interface..route..gateway` | IP address | +| `interface..route..destination` | CIDR IP address (not available yet) | | `dns.server.` | IP address | -| `dns.domain.` | DNS search domain | +| `dns.domain.` | DNS search domain | | `cloud-init.config.data` | string | -| `cloud-init.data.encoding` | {"", "base64", "gzip+base64"} | +| `cloud-init.data.encoding` | {"", "base64", "gzip+base64"} | | `cloud-init.config.url` | URL | 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 92eb9a51b7d..c74b183480f 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 @@ -15,8 +15,8 @@ Get the latest ISO artifact from the RancherOS [releases](https://github.com/ran 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) +VMWare VSphere | >=v1.4.0 | [rancheros-autoformat.iso](https://releases.rancher.com/os/latest/vmware/rancheros-autoformat.iso) +VMWare Fusion | >=v1.4.0 | [rancheros-autoformat.iso](https://releases.rancher.com/os/latest/vmware/rancheros-autoformat.iso) Hyper-V | >=v1.5.0 | [rancheros.iso](https://releases.rancher.com/os/latest/hyperv/rancheros.iso) ### Using Docker Machine @@ -61,7 +61,7 @@ $ docker-machine create -d vmwarevsphere \ --vmwarevsphere-username \ --vmwarevsphere-password \ --vmwarevsphere-memory-size \ - --vmwarevsphere-boot2docker-url https://releases.rancher.com/os/latest/rancheros-vmware.iso \ + --vmwarevsphere-boot2docker-url https://releases.rancher.com/os/latest/vmware/rancheros-autoformat.iso \ --vmwarevsphere-vcenter \ --vmwarevsphere-vcenter-port \ --vmwarevsphere-disk-size \ @@ -82,7 +82,7 @@ Here is an example about using the RancherOS latest link: $ docker-machine create -d vmwarefusion \ --vmwarefusion-no-share \ --vmwarefusion-memory-size \ - --vmwarefusion-boot2docker-url https://releases.rancher.com/os/latest/rancheros-vmware.iso \ + --vmwarefusion-boot2docker-url https://releases.rancher.com/os/latest/vmware/rancheros-autoformat.iso \ ```