Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
Coredns
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Railgun
Coredns
Commits
64d0cfba
Commit
64d0cfba
authored
Jan 19, 2020
by
Miek Gieben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more
Signed-off-by:
Miek Gieben
<
miek@miek.nl
>
parent
894ec684
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
14 deletions
+20
-14
plugin/traffic/HACKING.md
plugin/traffic/HACKING.md
+1
-0
plugin/traffic/README.md
plugin/traffic/README.md
+2
-0
plugin/traffic/setup.go
plugin/traffic/setup.go
+2
-0
plugin/traffic/traffic.go
plugin/traffic/traffic.go
+5
-4
plugin/traffic/xds/assignment.go
plugin/traffic/xds/assignment.go
+6
-6
plugin/traffic/xds/client.go
plugin/traffic/xds/client.go
+4
-4
No files found.
plugin/traffic/HACKING.md
View file @
64d0cfba
...
...
@@ -36,6 +36,7 @@ Then for CoreDNS, check out the `traffic` branch, create a Corefile:
example.org {
traffic grpc://127.0.0.1:18000 {
id test-id
ignore_health
}
debug
}
...
...
plugin/traffic/README.md
View file @
64d0cfba
...
...
@@ -62,6 +62,7 @@ traffic TO... {
node ID
tls CERT KEY CA
tls_servername NAME
ignore_health
}
~~~
...
...
@@ -78,6 +79,7 @@ traffic TO... {
*
`tls_servername`
**NAME**
allows you to set a server name in the TLS configuration. This is needed
because
*traffic*
connects to an IP address, so it can't infer the server name from it.
*
`ignore_health`
can be enabled to ignore endpoint health status, this can aid when debugging.
## Naming Clusters
...
...
plugin/traffic/setup.go
View file @
64d0cfba
...
...
@@ -101,6 +101,8 @@ func parseTraffic(c *caddy.Controller) (*Traffic, error) {
return
nil
,
c
.
ArgErr
()
}
tlsServerName
=
c
.
Val
()
case
"ignore_health"
:
t
.
health
=
true
default
:
return
nil
,
c
.
Errf
(
"unknown property '%s'"
,
c
.
Val
())
}
...
...
plugin/traffic/traffic.go
View file @
64d0cfba
...
...
@@ -19,6 +19,7 @@ import (
type
Traffic
struct
{
c
*
xds
.
Client
id
string
health
bool
origins
[]
string
Next
plugin
.
Handler
...
...
@@ -41,7 +42,7 @@ func (t *Traffic) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
m
.
SetReply
(
r
)
m
.
Authoritative
=
true
sockaddr
,
ok
:=
t
.
c
.
Select
(
cluster
)
sockaddr
,
ok
:=
t
.
c
.
Select
(
cluster
,
t
.
health
)
if
!
ok
{
// ok the cluster (which has potentially extra labels), doesn't exist, but we may have a query for endpoint-0.<cluster>.
// check if we have 2 labels and that the first equals endpoint-0.
...
...
@@ -55,7 +56,7 @@ func (t *Traffic) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
if
strings
.
HasPrefix
(
labels
[
0
],
"endpoint-"
)
{
// recheck if the cluster exist.
cluster
=
labels
[
1
]
sockaddr
,
ok
=
t
.
c
.
Select
(
cluster
)
sockaddr
,
ok
=
t
.
c
.
Select
(
cluster
,
t
.
health
)
if
!
ok
{
m
.
Ns
=
soa
(
state
.
Zone
)
m
.
Rcode
=
dns
.
RcodeNameError
...
...
@@ -88,7 +89,7 @@ func (t *Traffic) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
}
m
.
Answer
=
[]
dns
.
RR
{
&
dns
.
AAAA
{
Hdr
:
dns
.
RR_Header
{
Name
:
state
.
QName
(),
Rrtype
:
dns
.
TypeAAAA
,
Class
:
dns
.
ClassINET
,
Ttl
:
5
},
AAAA
:
sockaddr
.
Address
()}}
case
dns
.
TypeSRV
:
sockaddrs
,
_
:=
t
.
c
.
All
(
cluster
)
sockaddrs
,
_
:=
t
.
c
.
All
(
cluster
,
t
.
health
)
for
i
,
sa
:=
range
sockaddrs
{
target
:=
fmt
.
Sprintf
(
"endpoint-%d.%s.%s"
,
i
,
cluster
,
state
.
Zone
)
...
...
@@ -133,7 +134,7 @@ func (t *Traffic) serveEndpoint(ctx context.Context, state request.Request, endp
return
0
,
nil
}
sockaddrs
,
_
:=
t
.
c
.
All
(
cluster
)
sockaddrs
,
_
:=
t
.
c
.
All
(
cluster
,
t
.
health
)
if
len
(
sockaddrs
)
<
nr
{
m
.
Ns
=
soa
(
state
.
Zone
)
m
.
Rcode
=
dns
.
RcodeNameError
...
...
plugin/traffic/xds/assignment.go
View file @
64d0cfba
...
...
@@ -67,7 +67,7 @@ func (a *assignment) clusters() []string {
}
// Select selects a endpoint from cluster load assignments, using weighted random selection. It only selects endpoints that are reporting healthy.
func
(
a
*
assignment
)
Select
(
cluster
string
)
(
*
SocketAddress
,
bool
)
{
func
(
a
*
assignment
)
Select
(
cluster
string
,
ignore
bool
)
(
*
SocketAddress
,
bool
)
{
cla
:=
a
.
ClusterLoadAssignment
(
cluster
)
if
cla
==
nil
{
return
nil
,
false
...
...
@@ -77,7 +77,7 @@ func (a *assignment) Select(cluster string) (*SocketAddress, bool) {
healthy
:=
0
for
_
,
ep
:=
range
cla
.
Endpoints
{
for
_
,
lb
:=
range
ep
.
GetLbEndpoints
()
{
if
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
if
!
ignore
&&
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
continue
}
total
+=
int
(
lb
.
GetLoadBalancingWeight
()
.
GetValue
())
...
...
@@ -94,7 +94,7 @@ func (a *assignment) Select(cluster string) (*SocketAddress, bool) {
i
:=
0
for
_
,
ep
:=
range
cla
.
Endpoints
{
for
_
,
lb
:=
range
ep
.
GetLbEndpoints
()
{
if
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
if
!
ignore
&&
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
continue
}
if
r
==
i
{
...
...
@@ -109,7 +109,7 @@ func (a *assignment) Select(cluster string) (*SocketAddress, bool) {
r
:=
rand
.
Intn
(
total
)
+
1
for
_
,
ep
:=
range
cla
.
Endpoints
{
for
_
,
lb
:=
range
ep
.
GetLbEndpoints
()
{
if
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
if
!
ignore
&&
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
continue
}
r
-=
int
(
lb
.
GetLoadBalancingWeight
()
.
GetValue
())
...
...
@@ -122,7 +122,7 @@ func (a *assignment) Select(cluster string) (*SocketAddress, bool) {
}
// All returns all healthy endpoints.
func
(
a
*
assignment
)
All
(
cluster
string
)
([]
*
SocketAddress
,
bool
)
{
func
(
a
*
assignment
)
All
(
cluster
string
,
ignore
bool
)
([]
*
SocketAddress
,
bool
)
{
cla
:=
a
.
ClusterLoadAssignment
(
cluster
)
if
cla
==
nil
{
return
nil
,
false
...
...
@@ -131,7 +131,7 @@ func (a *assignment) All(cluster string) ([]*SocketAddress, bool) {
sa
:=
[]
*
SocketAddress
{}
for
_
,
ep
:=
range
cla
.
Endpoints
{
for
_
,
lb
:=
range
ep
.
GetLbEndpoints
()
{
if
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
if
!
ignore
&&
lb
.
GetHealthStatus
()
!=
corepb
.
HealthStatus_HEALTHY
{
continue
}
sa
=
append
(
sa
,
&
SocketAddress
{
lb
.
GetEndpoint
()
.
GetAddress
()
.
GetSocketAddress
()})
...
...
plugin/traffic/xds/client.go
View file @
64d0cfba
...
...
@@ -227,17 +227,17 @@ func (c *Client) receive(stream adsStream) error {
// Select returns an address that is deemed to be the correct one for this cluster. The returned
// boolean indicates if the cluster exists.
func
(
c
*
Client
)
Select
(
cluster
string
)
(
*
SocketAddress
,
bool
)
{
func
(
c
*
Client
)
Select
(
cluster
string
,
ignore
bool
)
(
*
SocketAddress
,
bool
)
{
if
cluster
==
""
{
return
nil
,
false
}
return
c
.
assignments
.
Select
(
cluster
)
return
c
.
assignments
.
Select
(
cluster
,
ignore
)
}
// All returns all endpoints.
func
(
c
*
Client
)
All
(
cluster
string
)
([]
*
SocketAddress
,
bool
)
{
func
(
c
*
Client
)
All
(
cluster
string
,
ignore
bool
)
([]
*
SocketAddress
,
bool
)
{
if
cluster
==
""
{
return
nil
,
false
}
return
c
.
assignments
.
All
(
cluster
)
return
c
.
assignments
.
All
(
cluster
,
ignore
)
}
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