From 2ab0c655068e35128533fb7f9ca452aa99588bcf Mon Sep 17 00:00:00 2001 From: zhengjiajin <393926893@qq.com> Date: Tue, 27 Jun 2017 12:21:49 +0800 Subject: [PATCH] Update docs for user-guide --- cluster/addons/fluentd-gcp/fluentd-gcp-image/README.md | 2 +- examples/volumes/azure_disk/README.md | 2 +- examples/volumes/nfs/README.md | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cluster/addons/fluentd-gcp/fluentd-gcp-image/README.md b/cluster/addons/fluentd-gcp/fluentd-gcp-image/README.md index f4caa66c8ee..468c0344876 100644 --- a/cluster/addons/fluentd-gcp/fluentd-gcp-image/README.md +++ b/cluster/addons/fluentd-gcp/fluentd-gcp-image/README.md @@ -1,6 +1,6 @@ # Collecting Docker Log Files with Fluentd and sending to GCP. -The image was moved to the the +The image was moved to the [new location](https://github.com/kubernetes/contrib/tree/master/fluentd/fluentd-gcp-image). [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/cluster/addons/fluentd-gcp/fluentd-gcp-image/README.md?pixel)]() diff --git a/examples/volumes/azure_disk/README.md b/examples/volumes/azure_disk/README.md index 35edc7ca8d4..d456356f161 100644 --- a/examples/volumes/azure_disk/README.md +++ b/examples/volumes/azure_disk/README.md @@ -7,7 +7,7 @@ In the pod, you need to provide the following information: - *diskName*: (required) the name of the VHD blob object. - *diskURI*: (required) the URI of the vhd blob object. - *cachingMode*: (optional) disk caching mode. Must be one of None, ReadOnly, or ReadWrite. Default is None. -- *fsType*: (optional) the filesytem type to mount. Default is ext4. +- *fsType*: (optional) the filesystem type to mount. Default is ext4. - *readOnly*: (optional) whether the filesystem is used as readOnly. Default is false. diff --git a/examples/volumes/nfs/README.md b/examples/volumes/nfs/README.md index f5a9d662087..2fa5ebe098d 100644 --- a/examples/volumes/nfs/README.md +++ b/examples/volumes/nfs/README.md @@ -85,7 +85,8 @@ Replace the invalid IP in the [nfs PV](nfs-pv.yaml). (In the future, we'll be able to tie these together using the service names, but for now, you have to hardcode the IP.) -Create the the [persistent volume](https://kubernetes.io/docs/user-guide/persistent-volumes.md) +Create the [persistent volume](https://kubernetes.io/docs/concepts/storage/persistent-volumes/) + and the persistent volume claim for your NFS server. The persistent volume and claim gives us an indirection that allow multiple pods to refer to the NFS server using a symbolic name rather than the hardcoded server address.