Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a few typos i ran into during setup #4543

Merged
merged 3 commits into from
Feb 18, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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