* Update Job docs to include info about using a headless service to enable pod communication via pod hostnames
* Change section title
* fix phrasing
* update yaml example
* update label selector
* more specific phrasing
* address comments and add new example
* add note about pod dns policies
* minor fixes
* add link to job patterns
* Update content/en/docs/tasks/job/intra-job-pod-networking-using-pod-hostnames.md
Co-authored-by: Aldo Culquicondor <1299064+alculquicondor@users.noreply.github.com>
* Update content/en/docs/tasks/job/intra-job-pod-networking-using-pod-hostnames.md
Co-authored-by: Aldo Culquicondor <1299064+alculquicondor@users.noreply.github.com>
* Update content/en/docs/tasks/job/intra-job-pod-networking-using-pod-hostnames.md
Co-authored-by: Aldo Culquicondor <1299064+alculquicondor@users.noreply.github.com>
* Update content/en/docs/tasks/job/intra-job-pod-networking-using-pod-hostnames.md
Co-authored-by: Aldo Culquicondor <1299064+alculquicondor@users.noreply.github.com>
* Update content/en/docs/concepts/workloads/controllers/job.md
Co-authored-by: Aldo Culquicondor <1299064+alculquicondor@users.noreply.github.com>
* address comments
* clarify sentence
* move minikube note to prereqs
* address comments
* captitalize all instances of Job
* move minikube notes to bottom of prereqs
* address comments
* update example
* fix typo
* update phrasing
* link to this from the completion modes section of the job docs
* address phrasing comments
* add newlines to break up block of text
* update phrasing
* update phrasing
* Update content/en/docs/concepts/workloads/controllers/job.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
* Update content/en/docs/tasks/job/job-with-pod-to-pod-communication.md
Co-authored-by: Qiming Teng <tengqm@outlook.com>
Co-authored-by: Aldo Culquicondor <1299064+alculquicondor@users.noreply.github.com>
Co-authored-by: Qiming Teng <tengqm@outlook.com>
The surname Vixie should be in title case as it is a proper noun, even
as part of the name of Vixie cron.
"vixie cron" (with a space in it) is not the name of any scheduling
tool; there are tools named vixie-cron but that is different from the
existing text.
Add description metadata for each task section (English localization).
For sections that only have one page, make sure that that sole page has
description metadata set.
This change helps prepare for the migration to the Docsy theme.
* Looping over logs of all jobs using a single command
Using the label constuct `-l` to loop over output of all jobs (or pods) using a single command
* Update content/en/docs/tasks/job/parallel-processing-expansion.md
Co-Authored-By: Tim Bannister <tim@scalefactory.com>
Co-authored-by: Tim Bannister <tim@scalefactory.com>
* Specify minimum Kubernetes version for Job tasks
Ask for v1.8 because CronJob went beta in v1.8 and some of the Job pages
reference CronJob.
* Drop version check from Job / CronJob task pages.
Assume that readers have Kubernetes v1.8 or newer.
Fix for the deprecation warning when executing the command:
```bash
$ kubectl run hello --schedule="*/1 * * * *" --restart=OnFailure --image=busybox -- /bin/sh -c "date; echo Hello from the Kubernetes cluster"
kubectl run --generator=cronjob/v1beta1 is DEPRECATED and will be removed in a future version. Use kubectl run --generator=run-pod/v1 or kubectl create instead.
```