From b644f63a4b13d36a9bf3d831fe76f8f3eba8f5b2 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Wed, 18 Feb 2015 14:33:09 -0500 Subject: [PATCH 1/3] fix spelling of privileged --- contrib/init/systemd/environ/config | 2 +- docs/getting-started-guides/centos/centos_manual_config.md | 4 ++-- docs/getting-started-guides/fedora/fedora_manual_config.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/init/systemd/environ/config b/contrib/init/systemd/environ/config index 45950522721df..ee33662b7d992 100644 --- a/contrib/init/systemd/environ/config +++ b/contrib/init/systemd/environ/config @@ -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/docs/getting-started-guides/centos/centos_manual_config.md b/docs/getting-started-guides/centos/centos_manual_config.md index 0f3e609170924..9ad3b537d13f8 100644 --- a/docs/getting-started-guides/centos/centos_manual_config.md +++ b/docs/getting-started-guides/centos/centos_manual_config.md @@ -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" ``` @@ -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 be37d3b2ea6e9..2aff2781c7599 100644 --- a/docs/getting-started-guides/fedora/fedora_manual_config.md +++ b/docs/getting-started-guides/fedora/fedora_manual_config.md @@ -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" ``` From 0d2d6ed61e6b1522bb26ff213daadddecef317bd Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Wed, 18 Feb 2015 14:37:11 -0500 Subject: [PATCH 2/3] fix spelling of separate --- Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go | 4 ++-- Godeps/_workspace/src/github.com/miekg/dns/server.go | 4 ++-- contrib/init/systemd/environ/config | 2 +- contrib/init/systemd/environ/controller-manager | 2 +- docs/getting-started-guides/centos/centos_manual_config.md | 4 ++-- docs/getting-started-guides/fedora/fedora_manual_config.md | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go b/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go index f6263d505f46a..6b387a7a15436 100644 --- a/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go +++ b/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go @@ -108,7 +108,7 @@ func TestSecure(t *testing.T) { key.Algorithm = RSASHA256 key.PublicKey = "AwEAAcNEU67LJI5GEgF9QLNqLO1SMq1EdoQ6E9f85ha0k0ewQGCblyW2836GiVsm6k8Kr5ECIoMJ6fZWf3CQSQ9ycWfTyOHfmI3eQ/1Covhb2y4bAmL/07PhrL7ozWBW3wBfM335Ft9xjtXHPy7ztCbV9qZ4TVDTW/Iyg0PiwgoXVesz" - // It should validate. Period is checked seperately, so this will keep on working + // It should validate. Period is checked separately, so this will keep on working if sig.Verify(key, []RR{soa}) != nil { t.Log("failure to validate") t.Fail() @@ -438,7 +438,7 @@ PrivateKey: WURgWHCcYIYUPWgeLmiPY2DJJk02vgrmTfitxgqcL4vwW7BOrbawVmVe0d9V94SR` if err != nil { t.Fatal(err.Error()) } - // TODO: Create seperate test for this + // TODO: Create separate test for this ds := eckey.(*DNSKEY).ToDS(SHA384) if ds.KeyTag != 10771 { t.Fatal("wrong keytag on DS") diff --git a/Godeps/_workspace/src/github.com/miekg/dns/server.go b/Godeps/_workspace/src/github.com/miekg/dns/server.go index c250ccc26a164..2b6b17ee38db2 100644 --- a/Godeps/_workspace/src/github.com/miekg/dns/server.go +++ b/Godeps/_workspace/src/github.com/miekg/dns/server.go @@ -369,7 +369,7 @@ func (srv *Server) getReadTimeout() time.Duration { } // serveTCP starts a TCP listener for the server. -// Each request is handled in a seperate goroutine. +// Each request is handled in a separate goroutine. func (srv *Server) serveTCP(l *net.TCPListener) error { defer l.Close() @@ -404,7 +404,7 @@ func (srv *Server) serveTCP(l *net.TCPListener) error { } // serveUDP starts a UDP listener for the server. -// Each request is handled in a seperate goroutine. +// Each request is handled in a separate goroutine. func (srv *Server) serveUDP(l *net.UDPConn) error { defer l.Close() diff --git a/contrib/init/systemd/environ/config b/contrib/init/systemd/environ/config index ee33662b7d992..39959d83259e7 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 diff --git a/contrib/init/systemd/environ/controller-manager b/contrib/init/systemd/environ/controller-manager index e5f8ba760bbfd..28ee15dc418ed 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 9ad3b537d13f8..34ae08d69b1b8 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 @@ -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" ``` diff --git a/docs/getting-started-guides/fedora/fedora_manual_config.md b/docs/getting-started-guides/fedora/fedora_manual_config.md index 2aff2781c7599..0aafb92227b5a 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 @@ -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" ``` From 2f67bd95902b4916ca34bbf0a74dcdfc2e712701 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Wed, 18 Feb 2015 17:02:14 -0500 Subject: [PATCH 3/3] unfix Godeps --- Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go | 4 ++-- Godeps/_workspace/src/github.com/miekg/dns/server.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go b/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go index 6b387a7a15436..f6263d505f46a 100644 --- a/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go +++ b/Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go @@ -108,7 +108,7 @@ func TestSecure(t *testing.T) { key.Algorithm = RSASHA256 key.PublicKey = "AwEAAcNEU67LJI5GEgF9QLNqLO1SMq1EdoQ6E9f85ha0k0ewQGCblyW2836GiVsm6k8Kr5ECIoMJ6fZWf3CQSQ9ycWfTyOHfmI3eQ/1Covhb2y4bAmL/07PhrL7ozWBW3wBfM335Ft9xjtXHPy7ztCbV9qZ4TVDTW/Iyg0PiwgoXVesz" - // It should validate. Period is checked separately, so this will keep on working + // It should validate. Period is checked seperately, so this will keep on working if sig.Verify(key, []RR{soa}) != nil { t.Log("failure to validate") t.Fail() @@ -438,7 +438,7 @@ PrivateKey: WURgWHCcYIYUPWgeLmiPY2DJJk02vgrmTfitxgqcL4vwW7BOrbawVmVe0d9V94SR` if err != nil { t.Fatal(err.Error()) } - // TODO: Create separate test for this + // TODO: Create seperate test for this ds := eckey.(*DNSKEY).ToDS(SHA384) if ds.KeyTag != 10771 { t.Fatal("wrong keytag on DS") diff --git a/Godeps/_workspace/src/github.com/miekg/dns/server.go b/Godeps/_workspace/src/github.com/miekg/dns/server.go index 2b6b17ee38db2..c250ccc26a164 100644 --- a/Godeps/_workspace/src/github.com/miekg/dns/server.go +++ b/Godeps/_workspace/src/github.com/miekg/dns/server.go @@ -369,7 +369,7 @@ func (srv *Server) getReadTimeout() time.Duration { } // serveTCP starts a TCP listener for the server. -// Each request is handled in a separate goroutine. +// Each request is handled in a seperate goroutine. func (srv *Server) serveTCP(l *net.TCPListener) error { defer l.Close() @@ -404,7 +404,7 @@ func (srv *Server) serveTCP(l *net.TCPListener) error { } // serveUDP starts a UDP listener for the server. -// Each request is handled in a separate goroutine. +// Each request is handled in a seperate goroutine. func (srv *Server) serveUDP(l *net.UDPConn) error { defer l.Close()