From 5e70dafa8c54db05912573c9ce4cf6addb7ffb0a Mon Sep 17 00:00:00 2001 From: Chip Zoller Date: Sat, 21 Mar 2020 09:54:31 -0400 Subject: [PATCH] Update quick-start.md Converting colons into equals to ensure a copy-and-paste is valid syntax for exporting vars. --- docs/book/src/user/quick-start.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/book/src/user/quick-start.md b/docs/book/src/user/quick-start.md index b07c1888a9ff..8d15c9c17a37 100644 --- a/docs/book/src/user/quick-start.md +++ b/docs/book/src/user/quick-start.md @@ -355,13 +355,13 @@ export VSPHERE_NETWORK="VM Network" # The vSphere resource pool for your VMs export VSPHERE_RESOURCE_POOL="*/Resources" # The VM folder for your VMs. Set to "" to use the root vSphere folder -export VSPHERE_FOLDER: "vm" +export VSPHERE_FOLDER="vm" # The VM template to use for your -export VSPHERE_TEMPLATE: "ubuntu-1804-kube-v1.17.3" m +export VSPHERE_TEMPLATE="ubuntu-1804-kube-v1.17.3" m # The VM template to use for the HAProxy load balanceranagement cluster. -export VSPHERE_HAPROXY_TEMPLATE: "capv-haproxy-v0.6.0-rc.2" +export VSPHERE_HAPROXY_TEMPLATE="capv-haproxy-v0.6.0-rc.2" # The public ssh authorized key on all machines -export VSPHERE_SSH_AUTHORIZED_KEY: "ssh-rsa AAAAB3N..." +export VSPHERE_SSH_AUTHORIZED_KEY="ssh-rsa AAAAB3N..." clusterctl init --infrastructure vsphere ```