diff --git a/contrib/init/systemd/environ/config b/contrib/init/systemd/environ/config index 45950522721..39959d83259 100644 --- a/contrib/init/systemd/environ/config +++ b/contrib/init/systemd/environ/config @@ -10,7 +10,7 @@ # kubelet.service # kube-proxy.service -# Comma seperated list of nodes in the etcd cluster +# Comma separated list of nodes in the etcd cluster KUBE_ETCD_SERVERS="--etcd_servers=http://127.0.0.1:4001" # logging to stderr means we get it in the systemd journal @@ -19,5 +19,5 @@ KUBE_LOGTOSTDERR="--logtostderr=true" # journal message level, 0 is debug KUBE_LOG_LEVEL="--v=0" -# Should this cluster be allowed to run privleged docker containers +# Should this cluster be allowed to run privileged docker containers KUBE_ALLOW_PRIV="--allow_privileged=false" diff --git a/contrib/init/systemd/environ/controller-manager b/contrib/init/systemd/environ/controller-manager index e5f8ba760bb..28ee15dc418 100644 --- a/contrib/init/systemd/environ/controller-manager +++ b/contrib/init/systemd/environ/controller-manager @@ -3,7 +3,7 @@ # defaults from config and apiserver should be adequate -# Comma seperated list of minions +# Comma separated list of minions KUBELET_ADDRESSES="--machines=127.0.0.1" # Add you own! diff --git a/docs/getting-started-guides/centos/centos_manual_config.md b/docs/getting-started-guides/centos/centos_manual_config.md index 0f3e6091709..34ae08d69b1 100644 --- a/docs/getting-started-guides/centos/centos_manual_config.md +++ b/docs/getting-started-guides/centos/centos_manual_config.md @@ -43,7 +43,7 @@ echo "192.168.121.9 centos-master * Edit /etc/kubernetes/config which will be the same on all hosts to contain: ``` -# Comma seperated list of nodes in the etcd cluster +# Comma separated list of nodes in the etcd cluster KUBE_ETCD_SERVERS="--etcd_servers=http://centos-master:4001" # logging to stderr means we get it in the systemd journal @@ -52,7 +52,7 @@ KUBE_LOGTOSTDERR="--logtostderr=true" # journal message level, 0 is debug KUBE_LOG_LEVEL="--v=0" -# Should this cluster be allowed to run privleged docker containers +# Should this cluster be allowed to run privileged docker containers KUBE_ALLOW_PRIV="--allow_privileged=false" ``` @@ -89,7 +89,7 @@ KUBE_API_ARGS="" * Edit /etc/kubernetes/controller-manager to appear as such: ``` -# Comma seperated list of minions +# Comma separated list of minions KUBELET_ADDRESSES="--machines=centos-minion" ``` @@ -145,4 +145,4 @@ centos-minion **The cluster should be running! Launch a test pod.** -You should have a functional cluster, check out [101](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/walkthrough/README.md)! \ No newline at end of file +You should have a functional cluster, check out [101](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/walkthrough/README.md)! diff --git a/docs/getting-started-guides/fedora/fedora_manual_config.md b/docs/getting-started-guides/fedora/fedora_manual_config.md index be37d3b2ea6..0aafb92227b 100644 --- a/docs/getting-started-guides/fedora/fedora_manual_config.md +++ b/docs/getting-started-guides/fedora/fedora_manual_config.md @@ -32,7 +32,7 @@ echo "192.168.121.9 fed-master * Edit /etc/kubernetes/config which will be the same on all hosts to contain: ``` -# Comma seperated list of nodes in the etcd cluster +# Comma separated list of nodes in the etcd cluster KUBE_ETCD_SERVERS="--etcd_servers=http://fed-master:4001" # logging to stderr means we get it in the systemd journal @@ -41,7 +41,7 @@ KUBE_LOGTOSTDERR="--logtostderr=true" # journal message level, 0 is debug KUBE_LOG_LEVEL="--v=0" -# Should this cluster be allowed to run privleged docker containers +# Should this cluster be allowed to run privileged docker containers KUBE_ALLOW_PRIV="--allow_privileged=false" ``` @@ -78,7 +78,7 @@ KUBE_API_ARGS="" * Edit /etc/kubernetes/controller-manager to appear as such: ``` -# Comma seperated list of minions +# Comma separated list of minions KUBELET_ADDRESSES="--machines=fed-minion" ```