This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new cfeb7fa [MINOR][DOCS] Update running-on-kubernetes.md cfeb7fa is described below commit cfeb7faf215b006463c5e676ebf7a3317f7730f1 Author: James Yu <y...@users.noreply.github.com> AuthorDate: Thu Jun 18 14:36:20 2020 -0700 [MINOR][DOCS] Update running-on-kubernetes.md ### What changes were proposed in this pull request? Fix executor container name typo. `executor` should be `spark-kubernetes-executor`. ### Why are the changes needed? The Executor pod container name the users actually get from their Kubernetes clusters is different from that described in the documentation. For example, below is what a user get from an executor pod. ``` Containers: spark-kubernetes-executor: Container ID: docker://aaaabbbbccccddddeeeeffff Image: <imagename> Image ID: docker-pullable://0000.dkr.ecr.us-east-0.amazonaws.com/spark Port: 7079/TCP Host Port: 0/TCP Args: executor State: Running Started: Thu, 28 May 2020 05:54:04 -0700 Ready: True Restart Count: 0 Limits: memory: 16Gi ``` ### Does this PR introduce _any_ user-facing change? Document change. ### How was this patch tested? N/A Closes #28862 from yuj/patch-1. Authored-by: James Yu <y...@users.noreply.github.com> Signed-off-by: Dongjoon Hyun <dongj...@apache.org> (cherry picked from commit ac98a9a07fe3e76c16bd5bb03aca553e80629e01) Signed-off-by: Dongjoon Hyun <dongj...@apache.org> --- docs/running-on-kubernetes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/running-on-kubernetes.md b/docs/running-on-kubernetes.md index 3abb891..e6a000d 100644 --- a/docs/running-on-kubernetes.md +++ b/docs/running-on-kubernetes.md @@ -1333,7 +1333,7 @@ The following affect the driver and executor containers. All other containers in <td>See description</td> <td> The container name will be assigned by spark ("spark-kubernetes-driver" for the driver container, and - "executor" for each executor container) if not defined by the pod template. If the container is defined by the + "spark-kubernetes-executor" for each executor container) if not defined by the pod template. If the container is defined by the template, the template's name will be used. </td> </tr> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org