Skip to content

Commit 8f36462

Browse files
committed
env variable added
1 parent fdd8f15 commit 8f36462

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/e2e_common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ const (
229229
vsphereCloudProviderConfiguration = "vsphere-cloud-provider.conf"
230230
vsphereControllerManager = "vmware-system-tkg-controller-manager"
231231
vSphereCSIConf = "csi-vsphere.conf"
232-
vsphereTKGSystemNamespace = "svc-tkg-domain-c10"
232+
envVsphereTKGSystemNamespace = "VSPHERE_TKG_SYSTEM_NAMESPACE"
233233
waitTimeForCNSNodeVMAttachmentReconciler = 30 * time.Second
234234
wcpServiceName = "wcp"
235235
vmcWcpHost = "10.2.224.24" //This is the LB IP of VMC WCP and its constant

tests/e2e/volume_health_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var _ = ginkgo.Describe("Volume health check", func() {
7171
csiNamespace = GetAndExpectStringEnvVar(envCSINamespace)
7272
nodeList, err := fnodes.GetReadySchedulableNodes(ctx, f.ClientSet)
7373
datastoreURL = GetAndExpectStringEnvVar(envSharedDatastoreURL)
74-
vsphereTKGSystemNamespace = GetAndExpectStringEnvVar(EnvVsphereTKGSystemNamespace)
74+
vsphereTKGSystemNamespace = GetAndExpectStringEnvVar(envVsphereTKGSystemNamespace)
7575
framework.ExpectNoError(err, "Unable to find ready and schedulable Node")
7676
if guestCluster {
7777
svcClient, svNamespace := getSvcClientAndNamespace()

0 commit comments

Comments
 (0)