From 764017898c5735a5779fdf1418717f349cce763a Mon Sep 17 00:00:00 2001 From: Jack Francis Date: Tue, 13 Feb 2018 10:58:09 -0800 Subject: [PATCH] more more debug --- test/e2e/runner/cli_provisioner.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/e2e/runner/cli_provisioner.go b/test/e2e/runner/cli_provisioner.go index 86ac1d0ad6..83f443bba3 100644 --- a/test/e2e/runner/cli_provisioner.go +++ b/test/e2e/runner/cli_provisioner.go @@ -230,11 +230,15 @@ func (cli *CLIProvisioner) FetchProvisioningMetrics(path string, cfg *config.Con masterFiles := agentFiles masterFiles = append(masterFiles, "/opt/azure/containers/mountetcd.sh", "/opt/azure/containers/setup-etcd.sh", "/opt/azure/containers/setup-etcd.log") hostname := fmt.Sprintf("%s.%s.cloudapp.azure.com", cli.Config.Name, cli.Config.Location) + fmt.Println(hostname) conn, err := remote.NewConnection(hostname, "22", cli.Engine.ClusterDefinition.Properties.LinuxProfile.AdminUsername, cli.Config.GetSSHKeyPath()) + fmt.Println("got past remote.NewConnection") if err != nil { + fmt.Printf("inside remote.NewConnection error block: %s\n", err) return err } for _, master := range cli.Masters { + fmt.Println("enumerating through masters") for _, fp := range masterFiles { err := conn.CopyRemote(master.Name, fp) if err != nil { @@ -244,6 +248,7 @@ func (cli *CLIProvisioner) FetchProvisioningMetrics(path string, cfg *config.Con } for _, agent := range cli.Agents { + fmt.Println("enumerating through agents") for _, fp := range agentFiles { err := conn.CopyRemote(agent.Name, fp) if err != nil {