zlosim commented on code in PR #4398: URL: https://github.com/apache/zeppelin/pull/4398#discussion_r929283473
########## zeppelin-plugins/launcher/k8s-standard/src/main/java/org/apache/zeppelin/interpreter/launcher/K8sRemoteInterpreterProcess.java: ########## @@ -403,28 +421,35 @@ boolean isSparkOnKubernetes(Properties interpreterProperties) { } @VisibleForTesting - String buildSparkSubmitOptions(String userName) { - StringBuilder options = new StringBuilder(); - - options.append(" --master k8s://https://kubernetes.default.svc"); - options.append(" --deploy-mode client"); - if (properties.containsKey(SPARK_DRIVER_MEMORY)) { - options.append(" --driver-memory ").append(properties.get(SPARK_DRIVER_MEMORY)); - } + String prepareZeppelinSparkConf(String userName) { + StringJoiner sparkConfSJ = new StringJoiner(" "); Review Comment: Hi @Reamer, you are right, got my builds messed up when testing, sorry about that. I have just rebuild everything from scratch and tested everything to confirm everything works as expected -- 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: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org