Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
42c7fec4
Commit
42c7fec4
authored
Oct 23, 2015
by
Tim Hockin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a cloud-provider hook to scrub DNS for pods
GCE needs this hook and it seems general enough to include.
parent
f93f7776
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
139 additions
and
4 deletions
+139
-4
cloud.go
pkg/cloudprovider/cloud.go
+2
-0
aws.go
pkg/cloudprovider/providers/aws/aws.go
+5
-0
fake.go
pkg/cloudprovider/providers/fake/fake.go
+5
-0
gce.go
pkg/cloudprovider/providers/gce/gce.go
+15
-0
gce_test.go
pkg/cloudprovider/providers/gce/gce_test.go
+40
-1
mesos.go
pkg/cloudprovider/providers/mesos/mesos.go
+5
-0
openstack.go
pkg/cloudprovider/providers/openstack/openstack.go
+5
-0
ovirt.go
pkg/cloudprovider/providers/ovirt/ovirt.go
+5
-0
rackspace.go
pkg/cloudprovider/providers/rackspace/rackspace.go
+5
-0
vagrant.go
pkg/cloudprovider/providers/vagrant/vagrant.go
+5
-0
kubelet.go
pkg/kubelet/kubelet.go
+20
-2
kubelet_test.go
pkg/kubelet/kubelet_test.go
+27
-1
No files found.
pkg/cloudprovider/cloud.go
View file @
42c7fec4
...
@@ -39,6 +39,8 @@ type Interface interface {
...
@@ -39,6 +39,8 @@ type Interface interface {
Routes
()
(
Routes
,
bool
)
Routes
()
(
Routes
,
bool
)
// ProviderName returns the cloud provider ID.
// ProviderName returns the cloud provider ID.
ProviderName
()
string
ProviderName
()
string
// ScrubDNS provides an opportunity for cloud-provider-specific code to process DNS settings for pods.
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
}
}
// Clusters is an abstract, pluggable interface for clusters of containers.
// Clusters is an abstract, pluggable interface for clusters of containers.
...
...
pkg/cloudprovider/providers/aws/aws.go
View file @
42c7fec4
...
@@ -597,6 +597,11 @@ func (aws *AWSCloud) ProviderName() string {
...
@@ -597,6 +597,11 @@ func (aws *AWSCloud) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
aws
*
AWSCloud
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Amazon Web Services.
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Amazon Web Services.
func
(
s
*
AWSCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
func
(
s
*
AWSCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
return
s
,
true
return
s
,
true
...
...
pkg/cloudprovider/providers/fake/fake.go
View file @
42c7fec4
...
@@ -94,6 +94,11 @@ func (f *FakeCloud) ProviderName() string {
...
@@ -94,6 +94,11 @@ func (f *FakeCloud) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
f
*
FakeCloud
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
// TCPLoadBalancer returns a fake implementation of TCPLoadBalancer.
// TCPLoadBalancer returns a fake implementation of TCPLoadBalancer.
// Actually it just returns f itself.
// Actually it just returns f itself.
func
(
f
*
FakeCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
func
(
f
*
FakeCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
...
...
pkg/cloudprovider/providers/gce/gce.go
View file @
42c7fec4
...
@@ -22,6 +22,7 @@ import (
...
@@ -22,6 +22,7 @@ import (
"net"
"net"
"net/http"
"net/http"
"path"
"path"
"regexp"
"sort"
"sort"
"strconv"
"strconv"
"strings"
"strings"
...
@@ -201,6 +202,20 @@ func (gce *GCECloud) ProviderName() string {
...
@@ -201,6 +202,20 @@ func (gce *GCECloud) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// Known-useless DNS search path.
var
uselessDNSSearchRE
=
regexp
.
MustCompile
(
`^[0-9]+.google.internal.$`
)
// ScrubDNS filters DNS settings for pods.
func
(
gce
*
GCECloud
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
// GCE has too many search paths by default. Filter the ones we know are useless.
for
_
,
s
:=
range
searches
{
if
!
uselessDNSSearchRE
.
MatchString
(
s
)
{
srchOut
=
append
(
srchOut
,
s
)
}
}
return
nameservers
,
srchOut
}
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Google Compute Engine.
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Google Compute Engine.
func
(
gce
*
GCECloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
func
(
gce
*
GCECloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
return
gce
,
true
return
gce
,
true
...
...
pkg/cloudprovider/providers/gce/gce_test.go
View file @
42c7fec4
...
@@ -16,7 +16,10 @@ limitations under the License.
...
@@ -16,7 +16,10 @@ limitations under the License.
package
gce
package
gce
import
"testing"
import
(
"reflect"
"testing"
)
func
TestGetRegion
(
t
*
testing
.
T
)
{
func
TestGetRegion
(
t
*
testing
.
T
)
{
gce
:=
&
GCECloud
{
gce
:=
&
GCECloud
{
...
@@ -96,3 +99,39 @@ func TestComparingHostURLs(t *testing.T) {
...
@@ -96,3 +99,39 @@ func TestComparingHostURLs(t *testing.T) {
}
}
}
}
}
}
func
TestScrubDNS
(
t
*
testing
.
T
)
{
tcs
:=
[]
struct
{
nameserversIn
[]
string
searchesIn
[]
string
nameserversOut
[]
string
searchesOut
[]
string
}{
{
nameserversIn
:
[]
string
{
"1.2.3.4"
,
"5.6.7.8"
},
nameserversOut
:
[]
string
{
"1.2.3.4"
,
"5.6.7.8"
},
},
{
searchesIn
:
[]
string
{
"c.prj.internal."
,
"12345678910.google.internal."
,
"google.internal."
},
searchesOut
:
[]
string
{
"c.prj.internal."
,
"google.internal."
},
},
{
searchesIn
:
[]
string
{
"c.prj.internal."
,
"12345678910.google.internal."
,
"zone.c.prj.internal."
,
"google.internal."
},
searchesOut
:
[]
string
{
"c.prj.internal."
,
"zone.c.prj.internal."
,
"google.internal."
},
},
{
searchesIn
:
[]
string
{
"c.prj.internal."
,
"12345678910.google.internal."
,
"zone.c.prj.internal."
,
"google.internal."
,
"unexpected"
},
searchesOut
:
[]
string
{
"c.prj.internal."
,
"zone.c.prj.internal."
,
"google.internal."
,
"unexpected"
},
},
}
gce
:=
&
GCECloud
{}
for
i
:=
range
tcs
{
n
,
s
:=
gce
.
ScrubDNS
(
tcs
[
i
]
.
nameserversIn
,
tcs
[
i
]
.
searchesIn
)
if
!
reflect
.
DeepEqual
(
n
,
tcs
[
i
]
.
nameserversOut
)
{
t
.
Errorf
(
"Expected %v, got %v"
,
tcs
[
i
]
.
nameserversOut
,
n
)
}
if
!
reflect
.
DeepEqual
(
s
,
tcs
[
i
]
.
searchesOut
)
{
t
.
Errorf
(
"Expected %v, got %v"
,
tcs
[
i
]
.
searchesOut
,
s
)
}
}
}
pkg/cloudprovider/providers/mesos/mesos.go
View file @
42c7fec4
...
@@ -124,6 +124,11 @@ func (c *MesosCloud) ProviderName() string {
...
@@ -124,6 +124,11 @@ func (c *MesosCloud) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
c
*
MesosCloud
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
// ListClusters lists the names of the available Mesos clusters.
// ListClusters lists the names of the available Mesos clusters.
func
(
c
*
MesosCloud
)
ListClusters
()
([]
string
,
error
)
{
func
(
c
*
MesosCloud
)
ListClusters
()
([]
string
,
error
)
{
// Always returns a single cluster (this one!)
// Always returns a single cluster (this one!)
...
...
pkg/cloudprovider/providers/openstack/openstack.go
View file @
42c7fec4
...
@@ -399,6 +399,11 @@ func (os *OpenStack) ProviderName() string {
...
@@ -399,6 +399,11 @@ func (os *OpenStack) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
os
*
OpenStack
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
type
LoadBalancer
struct
{
type
LoadBalancer
struct
{
network
*
gophercloud
.
ServiceClient
network
*
gophercloud
.
ServiceClient
compute
*
gophercloud
.
ServiceClient
compute
*
gophercloud
.
ServiceClient
...
...
pkg/cloudprovider/providers/ovirt/ovirt.go
View file @
42c7fec4
...
@@ -123,6 +123,11 @@ func (v *OVirtCloud) ProviderName() string {
...
@@ -123,6 +123,11 @@ func (v *OVirtCloud) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
v
*
OVirtCloud
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for oVirt cloud
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for oVirt cloud
func
(
v
*
OVirtCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
func
(
v
*
OVirtCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
return
nil
,
false
return
nil
,
false
...
...
pkg/cloudprovider/providers/rackspace/rackspace.go
View file @
42c7fec4
...
@@ -362,6 +362,11 @@ func (os *Rackspace) ProviderName() string {
...
@@ -362,6 +362,11 @@ func (os *Rackspace) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
os
*
Rackspace
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
func
(
os
*
Rackspace
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
func
(
os
*
Rackspace
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
return
nil
,
false
return
nil
,
false
}
}
...
...
pkg/cloudprovider/providers/vagrant/vagrant.go
View file @
42c7fec4
...
@@ -91,6 +91,11 @@ func (v *VagrantCloud) ProviderName() string {
...
@@ -91,6 +91,11 @@ func (v *VagrantCloud) ProviderName() string {
return
ProviderName
return
ProviderName
}
}
// ScrubDNS filters DNS settings for pods.
func
(
v
*
VagrantCloud
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
return
nameservers
,
searches
}
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Vagrant cloud.
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Vagrant cloud.
func
(
v
*
VagrantCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
func
(
v
*
VagrantCloud
)
TCPLoadBalancer
()
(
cloudprovider
.
TCPLoadBalancer
,
bool
)
{
return
nil
,
false
return
nil
,
false
...
...
pkg/kubelet/kubelet.go
View file @
42c7fec4
...
@@ -1233,7 +1233,7 @@ func (kl *Kubelet) getClusterDNS(pod *api.Pod) ([]string, []string, error) {
...
@@ -1233,7 +1233,7 @@ func (kl *Kubelet) getClusterDNS(pod *api.Pod) ([]string, []string, error) {
}
}
defer
f
.
Close
()
defer
f
.
Close
()
hostDNS
,
hostSearch
,
err
=
parseResolvConf
(
f
)
hostDNS
,
hostSearch
,
err
=
kl
.
parseResolvConf
(
f
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
nil
,
err
return
nil
,
nil
,
err
}
}
...
@@ -1270,7 +1270,20 @@ func (kl *Kubelet) getClusterDNS(pod *api.Pod) ([]string, []string, error) {
...
@@ -1270,7 +1270,20 @@ func (kl *Kubelet) getClusterDNS(pod *api.Pod) ([]string, []string, error) {
}
}
// Returns the list of DNS servers and DNS search domains.
// Returns the list of DNS servers and DNS search domains.
func
parseResolvConf
(
reader
io
.
Reader
)
(
nameservers
[]
string
,
searches
[]
string
,
err
error
)
{
func
(
kl
*
Kubelet
)
parseResolvConf
(
reader
io
.
Reader
)
(
nameservers
[]
string
,
searches
[]
string
,
err
error
)
{
var
scrubber
dnsScrubber
if
kl
.
cloud
!=
nil
{
scrubber
=
kl
.
cloud
}
return
parseResolvConf
(
reader
,
scrubber
)
}
// A helper for testing.
type
dnsScrubber
interface
{
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
}
func
parseResolvConf
(
reader
io
.
Reader
,
dnsScrubber
dnsScrubber
)
(
nameservers
[]
string
,
searches
[]
string
,
err
error
)
{
file
,
err
:=
ioutil
.
ReadAll
(
reader
)
file
,
err
:=
ioutil
.
ReadAll
(
reader
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
nil
,
err
return
nil
,
nil
,
err
...
@@ -1299,6 +1312,11 @@ func parseResolvConf(reader io.Reader) (nameservers []string, searches []string,
...
@@ -1299,6 +1312,11 @@ func parseResolvConf(reader io.Reader) (nameservers []string, searches []string,
searches
=
fields
[
1
:
]
searches
=
fields
[
1
:
]
}
}
}
}
// Give the cloud-provider a chance to post-process DNS settings.
if
dnsScrubber
!=
nil
{
nameservers
,
searches
=
dnsScrubber
.
ScrubDNS
(
nameservers
,
searches
)
}
return
nameservers
,
searches
,
nil
return
nameservers
,
searches
,
nil
}
}
...
...
pkg/kubelet/kubelet_test.go
View file @
42c7fec4
...
@@ -878,6 +878,15 @@ func TestRunInContainer(t *testing.T) {
...
@@ -878,6 +878,15 @@ func TestRunInContainer(t *testing.T) {
}
}
}
}
type
countingDNSScrubber
struct
{
counter
*
int
}
func
(
cds
countingDNSScrubber
)
ScrubDNS
(
nameservers
,
searches
[]
string
)
(
nsOut
,
srchOut
[]
string
)
{
(
*
cds
.
counter
)
++
return
nameservers
,
searches
}
func
TestParseResolvConf
(
t
*
testing
.
T
)
{
func
TestParseResolvConf
(
t
*
testing
.
T
)
{
testCases
:=
[]
struct
{
testCases
:=
[]
struct
{
data
string
data
string
...
@@ -908,7 +917,21 @@ func TestParseResolvConf(t *testing.T) {
...
@@ -908,7 +917,21 @@ func TestParseResolvConf(t *testing.T) {
{
"#comment
\n
nameserver 1.2.3.4
\n
#comment
\n
search foo
\n
comment"
,
[]
string
{
"1.2.3.4"
},
[]
string
{
"foo"
}},
{
"#comment
\n
nameserver 1.2.3.4
\n
#comment
\n
search foo
\n
comment"
,
[]
string
{
"1.2.3.4"
},
[]
string
{
"foo"
}},
}
}
for
i
,
tc
:=
range
testCases
{
for
i
,
tc
:=
range
testCases
{
ns
,
srch
,
err
:=
parseResolvConf
(
strings
.
NewReader
(
tc
.
data
))
ns
,
srch
,
err
:=
parseResolvConf
(
strings
.
NewReader
(
tc
.
data
),
nil
)
if
err
!=
nil
{
t
.
Errorf
(
"expected success, got %v"
,
err
)
continue
}
if
!
reflect
.
DeepEqual
(
ns
,
tc
.
nameservers
)
{
t
.
Errorf
(
"[%d] expected nameservers %#v, got %#v"
,
i
,
tc
.
nameservers
,
ns
)
}
if
!
reflect
.
DeepEqual
(
srch
,
tc
.
searches
)
{
t
.
Errorf
(
"[%d] expected searches %#v, got %#v"
,
i
,
tc
.
searches
,
srch
)
}
counter
:=
0
cds
:=
countingDNSScrubber
{
&
counter
}
ns
,
srch
,
err
=
parseResolvConf
(
strings
.
NewReader
(
tc
.
data
),
cds
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Errorf
(
"expected success, got %v"
,
err
)
t
.
Errorf
(
"expected success, got %v"
,
err
)
continue
continue
...
@@ -919,6 +942,9 @@ func TestParseResolvConf(t *testing.T) {
...
@@ -919,6 +942,9 @@ func TestParseResolvConf(t *testing.T) {
if
!
reflect
.
DeepEqual
(
srch
,
tc
.
searches
)
{
if
!
reflect
.
DeepEqual
(
srch
,
tc
.
searches
)
{
t
.
Errorf
(
"[%d] expected searches %#v, got %#v"
,
i
,
tc
.
searches
,
srch
)
t
.
Errorf
(
"[%d] expected searches %#v, got %#v"
,
i
,
tc
.
searches
,
srch
)
}
}
if
counter
!=
1
{
t
.
Errorf
(
"[%d] expected dnsScrubber to have been called: got %d"
,
i
,
counter
)
}
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment