From 7d8e193f241107110ade5258460db177bf625ed1 Mon Sep 17 00:00:00 2001 From: Jeff Wu Date: Sun, 25 Sep 2022 14:21:07 +0000 Subject: [PATCH] make CI happy: change wc's awsebscsiconfig'a name to cluster name --- tkg/test/tkgctl/shared/package.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tkg/test/tkgctl/shared/package.go b/tkg/test/tkgctl/shared/package.go index 45cf765bd3d..16272246f40 100644 --- a/tkg/test/tkgctl/shared/package.go +++ b/tkg/test/tkgctl/shared/package.go @@ -280,7 +280,7 @@ func verifyClusterBootstrap(ctx context.Context, c client.Client, clusterBootstr // custom CB needs to have package names the same as the cluster name, so this will not match the expected providerRef name // any package specified in the custom CB manifest will have to be special-cased // so, handling this currently for antrea for the custom CB test case - if !isManagementCluster && isCustomCB && strings.Contains(pkg.RefName, "antrea") { + if !isManagementCluster && isCustomCB && (strings.Contains(pkg.RefName, "antrea") || strings.Contains(pkg.RefName, "aws-ebs-csi-driver")) { pkg.ValuesFrom.ProviderRef.Name = clusterBootstrap.Name } }