diff --git a/docs/deprecation-policy.md b/docs/deprecation-policy.md
index fb17613ca1..bd7645ea49 100644
--- a/docs/deprecation-policy.md
+++ b/docs/deprecation-policy.md
@@ -83,87 +83,91 @@ approximately 3 months (4 per year). The following table describes which API
versions are supported in a series of subsequent releases.
-
- | Release |
- API Versions |
- Notes |
-
-
- | X |
- v1 |
- |
-
-
- | X+1 |
- v1, v2alpha1 |
- |
-
-
- | X+2 |
- v1, v2alpha2 |
-
-
- - v2alpha1 is removed, "action required" relnote
-
- |
-
-
- | X+3 |
- v1, v2beta1 |
-
-
- - v2alpha2 is removed, "action required" relnote
-
- |
-
-
- | X+4 |
- v1, v2beta1, v2beta2 |
-
-
- - v2beta1 is deprecated, "action required" relnote
-
- |
-
-
- | X+5 |
- v1, v2, v2beta2 |
-
-
- - v2beta1 is removed, "action required" relnote
- - v2beta2 is deprecated, "action required" relnote
- - v1 is deprecated, "action required" relnote
-
- |
-
-
- | X+6 |
- v1, v2 |
-
-
- - v2beta2 is removed, "action required" relnote
-
- |
-
-
- | X+7 |
- v1, v2 |
- |
-
-
- | X+8 |
- v1, v2 |
- |
-
-
- | X+9 |
- v1, v2 |
-
-
- - v1 is removed, "action required" relnote
-
- |
-
+
+
+ | Release |
+ API Versions |
+ Notes |
+
+
+
+
+ | X |
+ v1 |
+ |
+
+
+ | X+1 |
+ v1, v2alpha1 |
+ |
+
+
+ | X+2 |
+ v1, v2alpha2 |
+
+
+ - v2alpha1 is removed, "action required" relnote
+
+ |
+
+
+ | X+3 |
+ v1, v2beta1 |
+
+
+ - v2alpha2 is removed, "action required" relnote
+
+ |
+
+
+ | X+4 |
+ v1, v2beta1, v2beta2 |
+
+
+ - v2beta1 is deprecated, "action required" relnote
+
+ |
+
+
+ | X+5 |
+ v1, v2, v2beta2 |
+
+
+ - v2beta1 is removed, "action required" relnote
+ - v2beta2 is deprecated, "action required" relnote
+ - v1 is deprecated, "action required" relnote
+
+ |
+
+
+ | X+6 |
+ v1, v2 |
+
+
+ - v2beta2 is removed, "action required" relnote
+
+ |
+
+
+ | X+7 |
+ v1, v2 |
+ |
+
+
+ | X+8 |
+ v1, v2 |
+ |
+
+
+ | X+9 |
+ v1, v2 |
+
+
+ - v1 is removed, "action required" relnote
+
+ |
+
+
### REST resources (aka API objects)
diff --git a/docs/user-guide/kubectl/kubectl_config.md b/docs/user-guide/kubectl/kubectl_config.md
index 441db2334a..c19e98d381 100644
--- a/docs/user-guide/kubectl/kubectl_config.md
+++ b/docs/user-guide/kubectl/kubectl_config.md
@@ -14,7 +14,7 @@ Modify kubeconfig files using subcommands like "kubectl config set current-conte
The loading order follows these rules:
1. If the --kubeconfig flag is set, then only that file is loaded. The flag may only be set once and no merging takes place.
- 2. If $KUBECONFIG environment variable is set, then it is used a list of paths (normal path delimitting rules for your system). These paths are merged. When a value is modified, it is modified in the file that defines the stanza. When a value is created, it is created in the first file that exists. If no files in the chain exist, then it creates the last file in the list.
+ 2. If $KUBECONFIG environment variable is set, then it is used as a list of paths (normal path delimitting rules for your system). These paths are merged. When a value is modified, it is modified in the file that defines the stanza. When a value is created, it is created in the first file that exists. If no files in the chain exist, then it creates the last file in the list.
3. Otherwise, ${HOME}/.kube/config is used and no merging takes place.
```
diff --git a/docs/user-guide/volumes.md b/docs/user-guide/volumes.md
index f2b5ff88a0..762518fc8f 100644
--- a/docs/user-guide/volumes.md
+++ b/docs/user-guide/volumes.md
@@ -531,6 +531,39 @@ before you can use it__
See the [Quobyte example](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/volumes/quobyte) for more details.
+## Using subPath
+
+Sometimes, it is useful to share one volume for multiple uses in a single pod. The `volumeMounts.subPath`
+property can be used to specify a sub-path inside the referenced volume instead of its root.
+
+Here is an example of a pod with a LAMP stack (Linux Apache Mysql PHP) using a single, shared volume.
+The HTML contents are mapped to its `html` folder, and the databases will be stored in its `mysql` folder:
+
+```yaml
+apiVersion: v1
+kind: Pod
+metadata:
+ name: my-lamp-site
+spec:
+ containers:
+ - name: mysql
+ image: mysql
+ volumeMounts:
+ - mountPath: /var/lib/mysql
+ name: site-data
+ subPath: mysql
+ - name: php
+ image: php
+ volumeMounts:
+ - mountPath: /var/www/html
+ name: site-data
+ subPath: html
+ volumes:
+ - name: site-data
+ persistentVolumeClaim:
+ claimName: my-lamp-site-data
+```
+
## Resources
The storage media (Disk, SSD, etc.) of an `emptyDir` volume is determined by the