@@ -361,23 +361,23 @@ var _ = Describe("AppWrapper E2E Test", func() {
361361Expect (err ).NotTo (HaveOccurred ())
362362})
363363
364- It ("MCAD Scheduling Failure  Preemption Test" , func () {
365- fmt .Fprintf (os .Stdout , "[e2e] MCAD Bad Custom Pod Resources vs. Deployment Pod Resource Not Queuing  Test - Started.\n " )
364+ It ("MCAD Scheduling Fail Fast  Preemption Test" , func () {
365+ fmt .Fprintf (os .Stdout , "[e2e] MCAD Scheduling Fail Fast Preemption  Test - Started.\n " )
366366context  :=  initTestContext ()
367367var  appwrappers  []* arbv1.AppWrapper 
368368appwrappersPtr  :=  & appwrappers 
369369defer  cleanupTestObjectsPtr (context , appwrappersPtr )
370370
371371// This should fill up the worker node and most of the master node 
372- aw  :=  createDeploymentAWwith550CPU (context , "aw-deployment-2-550cpu" )
372+ aw  :=  createDeploymentAWwith550CPU (context , "aw-ff- deployment-2-550cpu" )
373373appwrappers  =  append (appwrappers , aw )
374374
375375err  :=  waitAWPodsReady (context , aw )
376376Expect (err ).NotTo (HaveOccurred ())
377377
378378// This should not fit on any node but should dispatch because there is enough aggregated resources. 
379379aw2  :=  createGenericDeploymentCustomPodResourcesWithCPUAW (
380- context , "aw-deployment-1-700-cpu" , "700m" , "700m" , 1 )
380+ context , "aw-ff- deployment-1-700-cpu" , "700m" , "700m" , 1 )
381381
382382appwrappers  =  append (appwrappers , aw2 )
383383
@@ -390,7 +390,7 @@ var _ = Describe("AppWrapper E2E Test", func() {
390390// This should fit on cluster after AW aw-deployment-1-700-cpu above is automatically preempted on 
391391// scheduling failure 
392392aw3  :=  createGenericDeploymentCustomPodResourcesWithCPUAW (
393- context , "aw-deployment-2-425-cpu" , "425m" , "425m" , 2 )
393+ context , "aw-ff- deployment-2-425-cpu" , "425m" , "425m" , 2 )
394394
395395appwrappers  =  append (appwrappers , aw3 )
396396
0 commit comments