From cda7113745d73396d4400e5af1560493a1867f3c Mon Sep 17 00:00:00 2001 From: Jimmy Song Date: Tue, 29 Aug 2017 10:29:47 +0800 Subject: [PATCH] fix typo --- appendix/docker-best-practice.html | 2 +- appendix/index.html | 2 +- appendix/issues.html | 2 +- appendix/tricks.html | 2 +- concepts/concepts.html | 2 +- concepts/configmap.html | 6 +++--- concepts/cronjob.html | 2 +- concepts/daemonset.html | 2 +- concepts/deployment.html | 2 +- concepts/horizontal-pod-autoscaling.html | 6 +++--- concepts/index.html | 2 +- concepts/ingress.html | 2 +- concepts/job.html | 2 +- concepts/label.html | 2 +- concepts/namespace.html | 2 +- concepts/node.html | 2 +- concepts/objects.html | 2 +- concepts/pod-overview.html | 2 +- concepts/pod.html | 2 +- concepts/replicaset.html | 2 +- concepts/secret.html | 2 +- concepts/service.html | 2 +- concepts/serviceaccount.html | 2 +- concepts/statefulset.html | 2 +- concepts/volume.html | 2 +- develop/client-go-sample.html | 2 +- develop/contribute.html | 2 +- develop/developing-environment.html | 2 +- develop/index.html | 2 +- develop/testing.html | 2 +- guide/access-cluster.html | 2 +- guide/access-kubernetes-cluster.html | 2 +- guide/application-development-deployment-flow.html | 2 +- guide/authenticate-across-clusters-kubeconfig.html | 2 +- guide/cluster-management.html | 2 +- guide/command-usage.html | 2 +- guide/configure-liveness-readiness-probes.html | 2 +- guide/configure-pod-service-account.html | 2 +- guide/connecting-to-applications-port-forward.html | 2 +- guide/deploy-applications-in-kubernetes.html | 2 +- guide/index.html | 2 +- guide/kubelet-authentication-authorization.html | 2 +- guide/managing-tls-in-a-cluster.html | 2 +- guide/migrating-hadoop-yarn-to-kubernetes.html | 2 +- guide/resource-configuration.html | 2 +- guide/service-access-application-cluster.html | 2 +- guide/tls-bootstrapping.html | 2 +- guide/using-kubectl.html | 2 +- index.html | 2 +- practice/app-log-collection.html | 2 +- practice/configuration-best-practice.html | 2 +- practice/create-kubeconfig.html | 2 +- practice/create-tls-and-secret-key.html | 2 +- practice/dashboard-addon-installation.html | 2 +- practice/data-persistence-problem.html | 2 +- practice/distributed-load-test.html | 2 +- practice/edge-node-configuration.html | 2 +- practice/efk-addon-installation.html | 2 +- practice/etcd-cluster-installation.html | 2 +- practice/glusterfs.html | 2 +- practice/heapster-addon-installation.html | 2 +- practice/index.html | 2 +- practice/install-kbernetes1.6-on-centos.html | 2 +- practice/jenkins-ci-cd.html | 2 +- practice/kubectl-installation.html | 2 +- practice/kubedns-addon-installation.html | 2 +- practice/master-installation.html | 2 +- practice/monitor.html | 2 +- practice/network-and-cluster-perfermance-test.html | 2 +- practice/node-installation.html | 2 +- practice/operation.html | 2 +- practice/service-discovery-and-loadbalancing.html | 2 +- practice/service-rolling-update.html | 2 +- ...orage-for-containers-using-glusterfs-with-openshift.html | 2 +- practice/storage.html | 2 +- practice/traefik-ingress-installation.html | 2 +- practice/using-glusterfs-for-persistent-storage.html | 2 +- search_plus_index.json | 2 +- usecases/big-data.html | 2 +- usecases/configuring-request-routing.html | 2 +- usecases/index.html | 2 +- usecases/istio-installation.html | 2 +- usecases/istio.html | 2 +- usecases/linkerd-user-guide.html | 2 +- usecases/linkerd.html | 2 +- usecases/microservices.html | 2 +- usecases/service-discovery-in-microservices.html | 2 +- usecases/spark-on-kubernetes.html | 2 +- 88 files changed, 92 insertions(+), 92 deletions(-) diff --git a/appendix/docker-best-practice.html b/appendix/docker-best-practice.html index 647b424ef..b84f02884 100644 --- a/appendix/docker-best-practice.html +++ b/appendix/docker-best-practice.html @@ -1540,7 +1540,7 @@ diff --git a/appendix/index.html b/appendix/index.html index fe345d6d2..3377989be 100644 --- a/appendix/index.html +++ b/appendix/index.html @@ -1467,7 +1467,7 @@ diff --git a/appendix/issues.html b/appendix/issues.html index f386f87c3..2ecb01111 100644 --- a/appendix/issues.html +++ b/appendix/issues.html @@ -1501,7 +1501,7 @@ options ndots:5 diff --git a/appendix/tricks.html b/appendix/tricks.html index 4cf6e70b3..2b7b1b9cd 100644 --- a/appendix/tricks.html +++ b/appendix/tricks.html @@ -1480,7 +1480,7 @@ diff --git a/concepts/concepts.html b/concepts/concepts.html index 95c0aab6f..53fe655c2 100644 --- a/concepts/concepts.html +++ b/concepts/concepts.html @@ -1541,7 +1541,7 @@ diff --git a/concepts/configmap.html b/concepts/configmap.html index 6ec9a94a2..b18320402 100644 --- a/concepts/configmap.html +++ b/concepts/configmap.html @@ -1622,7 +1622,7 @@ log_level=INFO special.how: very special.type: charm -

为了将ConfigMap中的值注入到命令行的参数里面,我们还要像前面那个例子一样使用环境变量替换语法${VAR_NAME)。(其实这个东西就是给Docker容器设置环境变量,以前我创建镜像的时候经常这么玩,通过docker run的时候指定-e参数修改镜像里的环境变量,然后docker的CMD命令再利用该$(VAR_NAME)通过sed来来修改配置文件或者作为命令行启动参数。)

+

为了将ConfigMap中的值注入到命令行的参数里面,我们还要像前面那个例子一样使用环境变量替换语法${VAR_NAME)。(其实这个东西就是给Docker容器设置环境变量,以前我创建镜像的时候经常这么玩,通过docker run的时候指定-e参数修改镜像里的环境变量,然后docker的CMD命令再利用该$(VAR_NAME)通过sed来修改配置文件或者作为命令行启动参数。)

apiVersion: v1
 kind: Pod
 metadata:
@@ -1702,7 +1702,7 @@ log_level=INFO
 

运行这个Pod后的结果是very

@@ -1746,7 +1746,7 @@ log_level=INFO diff --git a/concepts/cronjob.html b/concepts/cronjob.html index cd8af1dc1..d73b2d218 100644 --- a/concepts/cronjob.html +++ b/concepts/cronjob.html @@ -1507,7 +1507,7 @@ cronjob "hello" deleted diff --git a/concepts/daemonset.html b/concepts/daemonset.html index f13ad3c68..88289d3fa 100644 --- a/concepts/daemonset.html +++ b/concepts/daemonset.html @@ -1532,7 +1532,7 @@ diff --git a/concepts/deployment.html b/concepts/deployment.html index 3fde7956f..ce1592e34 100644 --- a/concepts/deployment.html +++ b/concepts/deployment.html @@ -2005,7 +2005,7 @@ $ echo $? diff --git a/concepts/horizontal-pod-autoscaling.html b/concepts/horizontal-pod-autoscaling.html index e7bc70633..280004bdf 100644 --- a/concepts/horizontal-pod-autoscaling.html +++ b/concepts/horizontal-pod-autoscaling.html @@ -1420,7 +1420,7 @@

Horizontal Pod Autoscaling由API server和controller共同实现。

horizontal-pod-autoscaler
Figure: horizontal-pod-autoscaler

Metrics支持

-

在不同版本得API中,HPA autoscale时可以根据以下指标来判断:

+

在不同版本的API中,HPA autoscale时可以根据以下指标来判断: