mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 19:01:49 +00:00
fix spelling of separate
This commit is contained in:
parent
b644f63a4b
commit
0d2d6ed61e
4
Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/miekg/dns/dnssec_test.go
generated
vendored
@ -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")
|
||||
|
4
Godeps/_workspace/src/github.com/miekg/dns/server.go
generated
vendored
4
Godeps/_workspace/src/github.com/miekg/dns/server.go
generated
vendored
@ -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()
|
||||
|
||||
|
@ -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
|
||||
|
@ -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!
|
||||
|
@ -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"
|
||||
```
|
||||
|
||||
|
@ -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"
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user