Skip to content

Commit

Permalink
Merge pull request #4543 from mattf/tpyo
Browse files Browse the repository at this point in the history
fix a few typos i ran into during setup
  • Loading branch information
yujuhong committed Feb 18, 2015
2 parents 6af6de3 + 2f67bd9 commit 6bbde83
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions contrib/init/systemd/environ/config
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
2 changes: 1 addition & 1 deletion contrib/init/systemd/environ/controller-manager
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started-guides/centos/centos_manual_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
```

Expand Down Expand Up @@ -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"
```

Expand Down Expand Up @@ -145,4 +145,4 @@ centos-minion <none>

**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)!
You should have a functional cluster, check out [101](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/walkthrough/README.md)!
6 changes: 3 additions & 3 deletions docs/getting-started-guides/fedora/fedora_manual_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
```

Expand Down Expand Up @@ -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"
```

Expand Down

0 comments on commit 6bbde83

Please sign in to comment.