From 9d919d0ca006f12f448299f170124d8c3e6a34a4 Mon Sep 17 00:00:00 2001 From: Sherlock113 Date: Mon, 7 Sep 2020 16:39:29 +0800 Subject: [PATCH] fix sample file name and minor typo Signed-off-by: Sherlock113 --- .../en/docs/installing-on-linux/introduction/multioverview.md | 4 ++-- content/en/docs/quick-start/all-in-one-on-linux.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/installing-on-linux/introduction/multioverview.md b/content/en/docs/installing-on-linux/introduction/multioverview.md index c9062a58c..4621cc2a6 100644 --- a/content/en/docs/installing-on-linux/introduction/multioverview.md +++ b/content/en/docs/installing-on-linux/introduction/multioverview.md @@ -137,7 +137,7 @@ Here are some examples for your reference: ./kk create config [-f ~/myfolder/abc.yaml] ``` -- You can customize the persistent storage plugins (e.g. NFS Client, Ceph RBD, and GlusterFS) in `sample-config.yaml`. +- You can customize persistent storage plugins (e.g. NFS Client, Ceph RBD, and GlusterFS) in `config-sample.yaml`. ```bash ./kk create config --with-storage localVolume @@ -145,7 +145,7 @@ Here are some examples for your reference: {{< notice note >}} -KubeKey will install [OpenEBS](https://openebs.io/) to provision [LocalPV](https://kubernetes.io/docs/concepts/storage/volumes/#local) for development and testing environment by default, which is convenient for new users. For this example of multi-cluster installation, we will use the default storage class (local volume). For production, please use NFS/Ceph/GlusterFS/CSI or commercial products as persistent storage solutions, you need to specify them in `addons` of `sample-config.yaml`, see [Persistent Storage Configuration](../storage-configuration). +KubeKey will install [OpenEBS](https://openebs.io/) to provision [LocalPV](https://kubernetes.io/docs/concepts/storage/volumes/#local) for development and testing environment by default, which is convenient for new users. In this example of multi-node installation, the default storage class (local volume) is used. For production, please use NFS/Ceph/GlusterFS/CSI or commercial products as persistent storage solutions. You need to specify them under `addons` of `config-sample.yaml`. See [Persistent Storage Configuration](../storage-configuration) for more details. {{}} diff --git a/content/en/docs/quick-start/all-in-one-on-linux.md b/content/en/docs/quick-start/all-in-one-on-linux.md index f388baf98..6b4af5ab8 100644 --- a/content/en/docs/quick-start/all-in-one-on-linux.md +++ b/content/en/docs/quick-start/all-in-one-on-linux.md @@ -100,11 +100,11 @@ In this QuickStart tutorial, you only need to execute one command for installati ./kk create cluster [--with-kubernetes version] [--with-kubesphere version] ``` -Create a Kubernetes cluster with KubeSphere installed (e.g. `--with-kubesphere v3.0.0`), this is an example for your reference: +Create a Kubernetes cluster with KubeSphere installed. Here is an example for your reference: ```bash -./kk create cluster --with-kubernetes v1.17.9 --with-kubesphere [version] +./kk create cluster --with-kubernetes v1.17.9 --with-kubesphere v3.0.0 ``` {{< notice note >}}