From 4a35211c4471e4f00fbfb3d43434e602c6147f71 Mon Sep 17 00:00:00 2001 From: OpenTelekomCloud Proposal Bot Date: Wed, 19 Oct 2022 07:16:05 +0000 Subject: [PATCH] Update content --- umn/source/workloads/creating_a_job.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umn/source/workloads/creating_a_job.rst b/umn/source/workloads/creating_a_job.rst index e1ce8e2..dedee11 100644 --- a/umn/source/workloads/creating_a_job.rst +++ b/umn/source/workloads/creating_a_job.rst @@ -163,7 +163,7 @@ Based on the **.spec.completions** and **.spec.Parallelism** settings, jobs are | Parallel jobs | One or more pods run until successful termination. | Multiple pods for processing work queues concurrently | +---------------------------------------------+-----------------------------------------------------------------------+-------------------------------------------------------+ -The following is an example job, which calculates π till the 2000\ :sup:`th` digit and prints the output. +The following is an example job, which calculates Pi till the 2000\ :sup:`th` digit and prints the output. .. code-block:: @@ -172,7 +172,7 @@ The following is an example job, which calculates π till the 2000\ :sup:`th` di metadata: name: myjob spec: - completions: 50 # 50 pods need to be run to finish a job. In this example, π is printed for 50 times. + completions: 50 # 50 pods need to be run to finish a job. In this example, Pi is printed for 50 times. parallelism: 5 # 5 pods are run in parallel. backoffLimit: 5 # The maximum number of retry times is 5. template: