summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanet Kuo <chiachenk@google.com>2015-07-15 17:28:59 -0700
committerJanet Kuo <chiachenk@google.com>2015-07-16 23:12:47 -0700
commit9f528c422685de25aafd8c76cdaef0125c005855 (patch)
tree56efbf5fa00e18f93783106f74e648696b2d30b2
parent3bb581f736aafb9f4a403834238274a41411696c (diff)
Ensure all docs and examples in user guide are reachable
-rw-r--r--admission_control_limit_range.md3
-rw-r--r--admission_control_resource_quota.md3
-rw-r--r--persistent-storage.md2
-rw-r--r--secrets.md4
-rw-r--r--simple-rolling-update.md4
5 files changed, 11 insertions, 5 deletions
diff --git a/admission_control_limit_range.md b/admission_control_limit_range.md
index 2420a274..addd8483 100644
--- a/admission_control_limit_range.md
+++ b/admission_control_limit_range.md
@@ -153,6 +153,9 @@ It is expected we will want to define limits for particular pods or containers b
To make a **LimitRangeItem** more restrictive, we will intend to add these additional restrictions at a future point in time.
+## Example
+See the [example of Limit Range](../user-guide/limitrange) for more information.
+
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/design/admission_control_limit_range.md?pixel)]()
diff --git a/admission_control_resource_quota.md b/admission_control_resource_quota.md
index 7a323689..ec2cb20d 100644
--- a/admission_control_resource_quota.md
+++ b/admission_control_resource_quota.md
@@ -174,6 +174,9 @@ resourcequotas 1 1
services 3 5
```
+## More information
+See [resource quota document](../admin/resource-quota.md) and the [example of Resource Quota](../user-guide/resourcequota) for more information.
+
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/design/admission_control_resource_quota.md?pixel)]()
diff --git a/persistent-storage.md b/persistent-storage.md
index 9639a521..1cbed771 100644
--- a/persistent-storage.md
+++ b/persistent-storage.md
@@ -28,7 +28,7 @@ This document proposes a model for managing persistent, cluster-scoped storage f
Two new API kinds:
-A `PersistentVolume` (PV) is a storage resource provisioned by an administrator. It is analogous to a node.
+A `PersistentVolume` (PV) is a storage resource provisioned by an administrator. It is analogous to a node. See [Persistent Volume Guide](../user-guide/persistent-volumes/) for how to use it.
A `PersistentVolumeClaim` (PVC) is a user's request for a persistent volume to use in a pod. It is analogous to a pod.
diff --git a/secrets.md b/secrets.md
index 33433dc0..b4bc8385 100644
--- a/secrets.md
+++ b/secrets.md
@@ -23,8 +23,8 @@ certainly want the docs that go with that version.</h1>
## Abstract
-A proposal for the distribution of secrets (passwords, keys, etc) to the Kubelet and to
-containers inside Kubernetes using a custom volume type.
+A proposal for the distribution of [secrets](../user-guide/secrets.md) (passwords, keys, etc) to the Kubelet and to
+containers inside Kubernetes using a custom [volume](../user-guide/volumes.md#secrets) type. See the [secrets example](../user-guide/secrets/) for more information.
## Motivation
diff --git a/simple-rolling-update.md b/simple-rolling-update.md
index ed2e5349..b74264d6 100644
--- a/simple-rolling-update.md
+++ b/simple-rolling-update.md
@@ -21,9 +21,9 @@ certainly want the docs that go with that version.</h1>
<!-- END MUNGE: UNVERSIONED_WARNING -->
## Simple rolling update
-This is a lightweight design document for simple rolling update in ```kubectl```
+This is a lightweight design document for simple [rolling update](../user-guide/kubectl/kubectl_rolling-update.md) in ```kubectl```.
-Complete execution flow can be found [here](#execution-details).
+Complete execution flow can be found [here](#execution-details). See the [example of rolling update](../user-guide/update-demo/) for more information.
### Lightweight rollout
Assume that we have a current replication controller named ```foo``` and it is running image ```image:v1```