dongjoon-hyun commented on a change in pull request #29934:
URL: https://github.com/apache/spark/pull/29934#discussion_r499845657
##########
File path:
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/features/PodTemplateConfigMapStep.scala
##########
@@ -31,14 +31,16 @@ private[spark] class PodTemplateConfigMapStep(conf:
KubernetesConf)
private val hasTemplate = conf.contains(KUBERNETES_EXECUTOR_PODTEMPLATE_FILE)
+ private val configmapName =
s"${conf.resourceNamePrefix}-$POD_TEMPLATE_CONFIGMAP"
Review comment:
This makes the following status.
```
tpcds-py-eebc4474fa60b6f7-driver-conf-map 1 5s
tpcds-py-eebc4474fa60b6f7-podspec-configmap 1 5s
```
This is inconsistent because Driver is using `driver-conf-map` postfix and
executor is using `podspec-configmap`.
```
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/submit/KubernetesClientApplication.scala:
val configMapName = s"${conf.resourceNamePrefix}-driver-conf-map"
```
Let's use `exec-conf-map` post fix.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]