From 846e814a7fa464c017c1baaafadaf2d891b939ea Mon Sep 17 00:00:00 2001 From: Stefan Bourlon Date: Mon, 10 Jul 2017 14:03:55 -0700 Subject: [PATCH] Backend vCenter: Remove network param for push cmd The network parameter is not used in the command "linuxkit push vcenter ..." Signed-off-by: Stefan Bourlon --- src/cmd/linuxkit/push_vcenter.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cmd/linuxkit/push_vcenter.go b/src/cmd/linuxkit/push_vcenter.go index 3b58598f8..fddef1f04 100644 --- a/src/cmd/linuxkit/push_vcenter.go +++ b/src/cmd/linuxkit/push_vcenter.go @@ -34,7 +34,6 @@ func pushVCenter(args []string) { newVM.vCenterURL = flags.String("url", os.Getenv("VCURL"), "URL of VMware vCenter in the format of https://username:password@VCaddress/sdk") newVM.dcName = flags.String("datacenter", os.Getenv("VCDATACENTER"), "The name of the DataCenter to host the image") newVM.dsName = flags.String("datastore", os.Getenv("VCDATASTORE"), "The name of the DataStore to host the image") - newVM.networkName = flags.String("network", os.Getenv("VCNETWORK"), "The network label the VM will use") newVM.vSphereHost = flags.String("hostname", os.Getenv("VCHOST"), "The server that will host the image") newVM.path = flags.String("path", "", "Path to a specific image")