diff --git a/docs/admin/cluster-management.md b/docs/admin/cluster-management.md index ebe5687f2e..3aef843d51 100644 --- a/docs/admin/cluster-management.md +++ b/docs/admin/cluster-management.md @@ -21,7 +21,7 @@ To install Kubernetes on a set of machines, consult one of the existing [Getting The current state of cluster upgrades is provider dependent, and some releases may require special care when upgrading. It is recommended that administrators consult both the [release notes](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG.md), as well as the version specific upgrade notes prior to upgrading their clusters. -* [Upgrading to 1.6](/docs/admin/upgrade) +* [Upgrading to 1.6](/docs/admin/upgrade-1-6) ### Upgrading Google Compute Engine clusters diff --git a/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md b/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md index a5c3d8ee56..c17f5abc7b 100644 --- a/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md +++ b/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md @@ -42,7 +42,7 @@ In this exercise, you create a Pod that runs a Container based on the {% include code.html language="yaml" file="exec-liveness.yaml" ghlink="/docs/tasks/configure-pod-container/exec-liveness.yaml" %} In the configuration file, you can see that the Pod has a single Container. -The `livenessProbe` field specifies that the kubelet should perform a liveness +The `periodSeconds` field specifies that the kubelet should perform a liveness probe every 5 seconds. The `initialDelaySeconds` field tells the kubelet that it should wait 5 second before performing the first probe. To perform a probe, the kubelet executes the command `cat /tmp/healthy` in the Container. If the