Removed v1beta1 disclaimer for jobs, since jobs are now part of batch/v1

This commit is contained in:
Maciej Szulik 2016-03-09 10:21:04 +01:00
parent e802296212
commit 95b51e46e4
1 changed files with 3 additions and 11 deletions

View File

@ -88,9 +88,9 @@ the same schema as a [pod](/docs/user-guide/pods), except it is nested and does
`kind`. `kind`.
In addition to required fields for a Pod, a pod template in a job must specify appropriate In addition to required fields for a Pod, a pod template in a job must specify appropriate
labels (see [pod selector](#pod-selector) and an appropriate restart policy. labels (see [pod selector](#pod-selector)) and an appropriate restart policy.
Only a [`RestartPolicy`](/docs/user-guide/pod-states) equal to `Never` or `OnFailure` are allowed. Only a [`RestartPolicy`](/docs/user-guide/pod-states/#restartpolicy) equal to `Never` or `OnFailure` are allowed.
### Pod Selector ### Pod Selector
@ -331,15 +331,7 @@ driver, and then cleans up.
An advantage of this approach is that the overall process gets the completion guarantee of a Job An advantage of this approach is that the overall process gets the completion guarantee of a Job
object, but complete control over what pods are created and how work is assigned to them. object, but complete control over what pods are created and how work is assigned to them.
## Caveats
Job objects are in the [`extensions` API Group](/docs/api/#api-groups).
Job objects have [API version `v1beta1`](/docs/api/)#api-versioning). Beta objects may
undergo changes to their schema and/or semantics in future software releases, but
similar functionality will be supported.
## Future work ## Future work
Support for creating Jobs at specified times/dates (i.e. cron) is expected in the next minor Support for creating Jobs at specified times/dates (i.e. cron) is expected in the next minor
release. release.