dongjoon-hyun commented on code in PR #10:
URL: 
https://github.com/apache/spark-kubernetes-operator/pull/10#discussion_r1605551694


##########
spark-submission-worker/src/main/java/org/apache/spark/k8s/operator/SparkAppDriverConf.java:
##########
@@ -0,0 +1,64 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.spark.k8s.operator;
+
+import scala.Option;
+
+import org.apache.spark.SparkConf;
+import org.apache.spark.deploy.k8s.Config;
+import org.apache.spark.deploy.k8s.KubernetesDriverConf;
+import org.apache.spark.deploy.k8s.KubernetesVolumeUtils;
+import org.apache.spark.deploy.k8s.submit.KubernetesClientUtils;
+import org.apache.spark.deploy.k8s.submit.MainAppResource;
+
+public class SparkAppDriverConf extends KubernetesDriverConf {
+  private SparkAppDriverConf(
+      SparkConf sparkConf,
+      String appId,
+      MainAppResource mainAppResource,
+      String mainClass,
+      String[] appArgs,
+      Option<String> proxyUser) {
+    super(sparkConf, appId, mainAppResource, mainClass, appArgs, proxyUser, 
null);
+  }
+
+  public static SparkAppDriverConf create(
+      SparkConf sparkConf,
+      String appId,
+      MainAppResource mainAppResource,
+      String mainClass,
+      String[] appArgs,
+      Option<String> proxyUser) {
+    // pre-create check only
+    KubernetesVolumeUtils.parseVolumesWithPrefix(
+        sparkConf, Config.KUBERNETES_EXECUTOR_VOLUMES_PREFIX());
+    return new SparkAppDriverConf(sparkConf, appId, mainAppResource, 
mainClass, appArgs, proxyUser);
+  }
+
+  /** Application managed by operator has a deterministic prefix */
+  @Override
+  public String resourceNamePrefix() {
+    return appId();
+  }
+
+  public String configMapNameDriver() {

Review Comment:
   When we make a new K8s resource name, we should guarantee that this complies 
K8s naming limit. 
   
   Could you add a method description, what is the range of string length of 
this method's return value?



-- 
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: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to