From c868149e7033be1ae2bc8eee4054b1b2a1677a05 Mon Sep 17 00:00:00 2001 From: Yongli Chen Date: Wed, 21 Aug 2019 13:21:42 -0700 Subject: [PATCH] update flag var --- kubetest/azure.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubetest/azure.go b/kubetest/azure.go index 77c9b3523add..2e46f0d4fc2e 100644 --- a/kubetest/azure.go +++ b/kubetest/azure.go @@ -91,9 +91,9 @@ var ( aksOrchestratorRelease = flag.String("aksengine-orchestratorRelease", "", "Orchestrator Profile for aks-engine") aksWinZipBuildScript = flag.String("aksengine-winZipBuildScript", "https://raw.githubusercontent.com/Azure/aks-engine/master/scripts/build-windows-k8s.sh", "Build script to create custom zip containing win binaries for aks-engine") aksNetworkPlugin = flag.String("aksengine-networkPlugin", "azure", "Network pluging to use with aks-engine") - aksAzureEnv = flag.String("acsengine-azure-env", "AzurePublicCloud", "The target Azure cloud") - aksIdentitySystem = flag.String("acsengine-identity-system", "azure_ad", "identity system (default:`azure_ad`, `adfs`)") - aksCustomCloudURL = flag.String("acsengine-custom-cloud-url", "", "management portal URL to use in custom Azure cloud (i.e Azure Stack etc)") + aksAzureEnv = flag.String("aksengine-azure-env", "AzurePublicCloud", "The target Azure cloud") + aksIdentitySystem = flag.String("aksengine-identity-system", "azure_ad", "identity system (default:`azure_ad`, `adfs`)") + aksCustomCloudURL = flag.String("aksengine-custom-cloud-url", "", "management portal URL to use in custom Azure cloud (i.e Azure Stack etc)") testCcm = flag.Bool("test-ccm", false, "Set to True if you want kubetest to run e2e tests for ccm") )