@@ -59,8 +59,10 @@ var _ = Describe("indingsep test", func() {
5959 },
6060 },
6161 }
62- s3TestDir = "s1appfw-" + testenv .RandomDNSName (4 )
62+
63+ s3TestDir = "icappfw-" + testenv .RandomDNSName (4 )
6364 appSourceVolumeName = "appframework-test-volume-" + testenv .RandomDNSName (3 )
65+ appListV1 = testenv .BasicApps
6466 })
6567
6668 AfterEach (func () {
@@ -131,6 +133,12 @@ var _ = Describe("indingsep test", func() {
131133 testcaseEnvInst .Log .Info ("Create Service Account" )
132134 testcaseEnvInst .CreateServiceAccount (serviceAccountName )
133135
136+ // Upload apps to S3
137+ testcaseEnvInst .Log .Info ("Upload apps to S3" )
138+ appFileList := testenv .GetAppFileList (appListV1 )
139+ _ , err := testenv .UploadFilesToS3 (testS3Bucket , s3TestDir , appFileList , downloadDirV1 )
140+ Expect (err ).To (Succeed (), "Unable to upload V1 apps to S3 test directory for IngestorCluster" )
141+
134142 // Deploy Ingestor Cluster with additional configurations (similar to standalone app framework test)
135143 appSourceName := "appframework-" + enterpriseApi .ScopeLocal + testenv .RandomDNSName (3 )
136144 appFrameworkSpec := testenv .GenerateAppFrameworkSpec (ctx , testcaseEnvInst , appSourceVolumeName , enterpriseApi .ScopeLocal , appSourceName , s3TestDir , 60 )
@@ -176,7 +184,7 @@ var _ = Describe("indingsep test", func() {
176184 }
177185
178186 testcaseEnvInst .Log .Info ("Deploy Ingestor Cluster with additional configurations" )
179- _ , err : = deployment .DeployIngestorClusterWithAdditionalConfiguration (ctx , ic )
187+ _ , err = deployment .DeployIngestorClusterWithAdditionalConfiguration (ctx , ic )
180188 Expect (err ).To (Succeed (), "Unable to deploy Ingestor Cluster" )
181189
182190 // Ensure that Ingestor Cluster is in Ready phase
0 commit comments