diff --git a/docs/34.PVC.md b/docs/34.PVC.md index ab02933743d6864802520ccf579f1a4c8d38d2c0..f20b227db51cee0ec545cff65f65354430e1b753 100644 --- a/docs/34.PVC.md +++ b/docs/34.PVC.md @@ -260,7 +260,7 @@ index.html nginxpvc-test $ ls /data/k8s/nginxpvc-test/ ``` -我们可以预想到现在我们访问上面的服务,是不是又会得到**403**的结果啊,因为**nginxpvc-test**目录下面还没有任何文件呢,我们把根目录下面的 index.html 文件一到到 nginxpvc-test 目录下面去是不是又可以访问了: +我们可以预想到现在我们访问上面的服务,是不是又会得到**403**的结果啊,因为**nginxpvc-test**目录下面还没有任何文件呢,我们把根目录下面的 index.html 文件移动到 nginxpvc-test 目录下面去是不是又可以访问了: ```shell $ mv /data/k8s/index.html /data/k8s/nginxpvc-test/ ``` diff --git "a/docs/56.Grafana\347\232\204\345\256\211\350\243\205\344\275\277\347\224\250.md" "b/docs/56.Grafana\347\232\204\345\256\211\350\243\205\344\275\277\347\224\250.md" index b3788d7cb50efb82876d20f5e4374ce76cc03442..6f92a5442e146a8712a2d0fd36852a82ad5bacbe 100644 --- "a/docs/56.Grafana\347\232\204\345\256\211\350\243\205\344\275\277\347\224\250.md" +++ "b/docs/56.Grafana\347\232\204\345\256\211\350\243\205\344\275\277\347\224\250.md" @@ -20,7 +20,7 @@ $ docker run -d --name=grafana -p 3000:3000 grafana/grafana * Runs as the grafana user by default (instead of root) * All default volumes removed -特别需要注意第3条,userid 和 groupid 都有所变化,所以我们在运行的容器的时候需要注意这个变化。现在我们将这个容器转化成 Kubernetes 中的 Pod:(grafana.yaml) +特别需要注意第3条,userid 和 groupid 都有所变化,所以我们在运行的容器的时候需要注意这个变化。现在我们将这个容器转化成 Kubernetes 中的 Pod:(grafana-deploy.yaml) ```yaml apiVersion: extensions/v1beta1 kind: Deployment