Fix the URL (#3057)

* Fix the pr

As same as PR3050

* update to v1.6

update to v1.6

* update to v1.6

update to v1.6
This commit is contained in:
Xiaoyu Zhang
2017-03-30 01:14:25 +08:00
committed by Andrew Chen
parent fdc6a5afd6
commit 67420be850
@@ -35,7 +35,7 @@ Init Containers are exactly like regular Containers, except:
If an Init Container fails for a Pod, Kubernetes restarts the Pod repeatedly until the Init
Container succeeds. However, if the Pod has a `restartPolicy` of Never, it is not restarted.
To specify a Container as an Init Container, add the `initContainers` field on the PodSpec as a JSON array of objects of type [v1.Container](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_container) alongside the app `containers` array.
To specify a Container as an Init Container, add the `initContainers` field on the PodSpec as a JSON array of objects of type [v1.Container](/docs/api-reference/v1.6/#container-v1-core) alongside the app `containers` array.
The status of the init containers is returned in `status.initContainerStatuses`
field as an array of the container statuses (similar to the `status.containerStatuses`
field).