This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 93251ed  [MINOR][K8S][DOCS] Fix typo in K8s conf `deleteOnTermination`
93251ed is described below

commit 93251ed77ea1c5d037c64d2292b8760b03c8e181
Author: Zimo Li <7163127+l...@users.noreply.github.com>
AuthorDate: Thu Feb 10 17:01:41 2022 -0800

    [MINOR][K8S][DOCS] Fix typo in K8s conf `deleteOnTermination`
    
    ### What changes were proposed in this pull request?
    
    There is a grammatical mistake in the doc for the config 
`spark.kubernetes.driver.service.deleteOnTermination`
    
    ### Why are the changes needed?
    
    Fix typo
    
    ### Does this PR introduce _any_ user-facing change?
    
    yes
    previously:
    > If true, driver service will be deleted on Spark application termination. 
If false, it will be cleaned up when the driver pod is **deletion**.
    
    corrected:
    > If true, driver service will be deleted on Spark application termination. 
If false, it will be cleaned up when the driver pod is **deleted**.
    
    ### How was this patch tested?
    
    No tests are needed since it's only documentation changes.
    
    Closes #35482 from lzm0/patch-1.
    
    Authored-by: Zimo Li <7163127+l...@users.noreply.github.com>
    Signed-off-by: Dongjoon Hyun <dongj...@apache.org>
---
 .../core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala
 
b/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala
index 65a8f82..bd6bd93 100644
--- 
a/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala
+++ 
b/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala
@@ -58,7 +58,7 @@ private[spark] object Config extends Logging {
   val KUBERNETES_DRIVER_SERVICE_DELETE_ON_TERMINATION =
     ConfigBuilder("spark.kubernetes.driver.service.deleteOnTermination")
       .doc("If true, driver service will be deleted on Spark application 
termination. " +
-        "If false, it will be cleaned up when the driver pod is deletion.")
+        "If false, it will be cleaned up when the driver pod is deleted.")
       .version("3.2.0")
       .booleanConf
       .createWithDefault(true)

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

Reply via email to