Yikun commented on a change in pull request #35553:
URL: https://github.com/apache/spark/pull/35553#discussion_r812964505



##########
File path: 
resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/KubernetesSuite.scala
##########
@@ -212,7 +212,9 @@ class KubernetesSuite extends SparkFunSuite
       driverPodChecker: Pod => Unit = doBasicDriverPodCheck,
       executorPodChecker: Pod => Unit = doBasicExecutorPodCheck,
       appArgs: Array[String] = Array.empty[String],
-      isJVM: Boolean = true ): Unit = {
+      isJVM: Boolean = true,
+      sparkConfOverride: Option[SparkAppConf] = None,
+      appLocatorOverride: Option[String] = None): Unit = {

Review comment:
       The previous integrations test are single job based.
   
   Thus a suite can only submit one spark job, this adds the ability to create 
serveral jobs in a single suite with user specified conf, if not specified, 
will back to use the `sparkAppConf`.
   
   Also search `sparkConfOverride.getOrElse(sparkAppConf)` for understand.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to