-
Notifications
You must be signed in to change notification settings - Fork 29k
[MINOR][K8S] add missing docs for podTemplateContainerName properties #23155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…n docs. ## What changes were proposed in this pull request? "Running on Kubernetes" references `spark.driver.pod.name` few places, and it should be `spark.kubernetes.driver.pod.name`. ## How was this patch tested? See changes Closes #23133 from Leemoonsoo/fix-driver-pod-name-prop. Authored-by: Lee moon soo <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
|
Thank you for your first contribution, @aditanase . |
|
ok to test |
docs/running-on-kubernetes.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you move this to line 941 after spark.kubernetes.driver.podTemplateFile config? We had better group together spark.kubernetes.driver.* configs and spark.kubernetes.executor.* configs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, done. I'll squash the commits before merging.
|
Test build #99341 has finished for PR 23155 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Test build #99364 has finished for PR 23155 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
@dongjoon-hyun is this ok to merge? Should I squash it and ping you again? |
|
Oh, I thought it could be handled by another Kubernetes committers. I'll take a look again. |
docs/running-on-kubernetes.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, [pod template](#pod-template) is not working. Could you try the following and check with SKIP_API=1 jekyll build?
<a href="#pod-template">pod template</a>
docs/running-on-kubernetes.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix this, too.
docs/running-on-kubernetes.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto.
docs/running-on-kubernetes.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto.
|
Ping @aditanase |
|
@dongjoon-hyun Thanks for catching the broken anchors. Fixed them per your suggestion and tested with a jekyll build. Should work now. @srowen my apologies, I've been on an extended winter break. I've rebased against master and squashed my commits - should be ready to merge. |
|
Kubernetes integration test starting |
|
Test build #100886 has finished for PR 23155 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Kubernetes integration test status success |
|
Merged to master |
## What changes were proposed in this pull request? Adding docs for an enhancement that came in late in this PR: apache#22146 Currently the docs state that we're going to use the first container in a pod template, which was the implementation for some time, until it was improved with 2 new properties. ## How was this patch tested? I tested that the properties work by combining pod templates with client-mode and a simple pod template. Please review http://spark.apache.org/contributing.html before opening a pull request. Closes apache#23155 from aditanase/k8s-readme. Authored-by: Adrian Tanase <[email protected]> Signed-off-by: Sean Owen <[email protected]>
What changes were proposed in this pull request?
Adding docs for an enhancement that came in late in this PR: #22146
Currently the docs state that we're going to use the first container in a pod template, which was the implementation for some time, until it was improved with 2 new properties.
How was this patch tested?
I tested that the properties work by combining pod templates with client-mode and a simple pod template.
Please review http://spark.apache.org/contributing.html before opening a pull request.