Github user vanzin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22911#discussion_r233591350
  
    --- Diff: 
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/features/DelegationTokenFeatureStep.scala
 ---
    @@ -0,0 +1,114 @@
    +/*
    + * 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.deploy.k8s.features
    +
    +import io.fabric8.kubernetes.api.model.{ContainerBuilder, HasMetadata, 
PodBuilder, SecretBuilder}
    +import org.apache.commons.codec.binary.Base64
    +import org.apache.hadoop.security.UserGroupInformation
    +
    +import org.apache.spark.deploy.SparkHadoopUtil
    +import org.apache.spark.deploy.k8s.{KubernetesConf, KubernetesUtils, 
SparkPod}
    +import org.apache.spark.deploy.k8s.Config._
    +import org.apache.spark.deploy.k8s.Constants._
    +import org.apache.spark.deploy.security.HadoopDelegationTokenManager
    +import org.apache.spark.internal.config._
    +
    +/**
    + * Delegation token support for Spark apps on kubernetes.
    + *
    + * When preparing driver resources, this step will generate delegation 
tokens for the app if
    + * they're needed.
    + *
    + * When preparing pods, this step will mount the delegation token secret 
(either pre-defined,
    + * or generated by this step when preparing the driver).
    + */
    +private[spark] class DelegationTokenFeatureStep(conf: KubernetesConf[_], 
isDriver: Boolean)
    --- End diff --
    
    I think you're missing one use case there. There are 3 use cases:
    
    - keytab: keytab is provided to driver, driver handles kerberos login, 
creates tokens, distributes tokens to executors
    - pre-defined token secret: secret is mounted in the driver, env variable 
is set, driver loads them and distributes to executors
    - default kerberos case: submission client generates delegation tokens, 
creates a secret for them, then this behaves like the bullet above
    
    The third use case is actually the most common. In your reply above you're 
only covering the other two. My code covers all three.
    
    I'm just saying that this code actually doesn't need to do anything on the 
executor side, because the driver takes care of everything when the credentials 
are provided.


---

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

Reply via email to