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

    https://github.com/apache/spark/pull/22911#discussion_r233588339
  
    --- 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 --
    
    This is what I meant above when I said that the `HadoopKerberosLogin` logic 
could be deleted. The assumption here is that the secret should not be created 
as the keytab will use the HadoopDelegationTokenManager logic. The only secret 
that should be _created_ would be the keytab. However, I personally thought 
that we should point to a secretName that is either the delegationToken or the 
keytab. Hence why I suggested that the secretName and secretItemKey remain. 


---

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

Reply via email to