Skip to content

Commit

Permalink
Remove job's scale-related operations
Browse files Browse the repository at this point in the history
  • Loading branch information
soltysh committed Mar 8, 2018
1 parent bb8c59a commit 3cdcf11
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions docs/concepts/workloads/controllers/jobs-run-to-completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,6 @@ The requested parallelism (`.spec.parallelism`) can be set to any non-negative v
If it is unspecified, it defaults to 1.
If it is specified as 0, then the Job is effectively paused until it is increased.

A job can be scaled up using the `kubectl scale` command. For example, the following
command sets `.spec.parallelism` of a job called `myjob` to 10:

```shell
$ kubectl scale --replicas=10 jobs/myjob
job "myjob" scaled
```

You can also use the `scale` subresource of the Job resource.

Actual parallelism (number of pods running at any instant) may be more or less than requested
parallelism, for a variety of reasons:

Expand Down

0 comments on commit 3cdcf11

Please sign in to comment.