Remove job's scale-related operations (#7684)

This commit is contained in:
Maciej Szulik
2018-03-08 21:36:58 +01:00
committed by k8s-ci-robot
parent fd4115ce9f
commit b4068fb73c
@@ -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 unspecified, it defaults to 1.
If it is specified as 0, then the Job is effectively paused until it is increased. 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 Actual parallelism (number of pods running at any instant) may be more or less than requested
parallelism, for a variety of reasons: parallelism, for a variety of reasons: