4
4
"fmt"
5
5
"strings"
6
6
7
+ "github.com/golang/glog"
8
+
7
9
kapi "k8s.io/kubernetes/pkg/api"
8
10
"k8s.io/kubernetes/pkg/api/errors"
9
11
kclient "k8s.io/kubernetes/pkg/client/unversioned"
@@ -60,19 +62,19 @@ func NewServiceResolver(config *server.Config, accessor ServiceAccessor, endpoin
60
62
// * endpoint_id is "portal" when portalIP is set
61
63
// * endpoints always returns each individual endpoint as A records
62
64
//
63
- func (b * ServiceResolver ) Records (name string , exact bool ) ([]msg.Service , error ) {
64
- if ! strings .HasSuffix (name , b .base ) {
65
+ func (b * ServiceResolver ) Records (dnsName string , exact bool ) ([]msg.Service , error ) {
66
+ if ! strings .HasSuffix (dnsName , b .base ) {
65
67
return nil , nil
66
68
}
67
- prefix := strings .Trim (strings .TrimSuffix (name , b .base ), "." )
69
+ prefix := strings .Trim (strings .TrimSuffix (dnsName , b .base ), "." )
68
70
segments := strings .Split (prefix , "." )
69
71
for i , j := 0 , len (segments )- 1 ; i < j ; i , j = i + 1 , j - 1 {
70
72
segments [i ], segments [j ] = segments [j ], segments [i ]
71
73
}
72
74
if len (segments ) == 0 {
73
75
return nil , nil
74
76
}
75
-
77
+ glog . V ( 4 ). Infof ( "Answering query %s:%t" , dnsName , exact )
76
78
switch segments [0 ] {
77
79
case "svc" , "endpoints" :
78
80
if len (segments ) < 3 {
@@ -117,8 +119,8 @@ func (b *ServiceResolver) Records(name string, exact bool) ([]msg.Service, error
117
119
if len (portName ) == 0 {
118
120
portName = fmt .Sprintf ("unknown-port-%d" , port )
119
121
}
120
- srvName := fmt .Sprintf ("%s.portal.%s" , portName , name )
121
- keyName := fmt .Sprintf ("_%s._%s.%s" , portName , p .Protocol , name )
122
+ srvName := fmt .Sprintf ("%s.portal.%s.%s " , portName , name , b . base )
123
+ keyName := fmt .Sprintf ("_%s._%s.%s.%s " , portName , strings . ToLower ( string ( p .Protocol )) , name , b . base )
122
124
services = append (services ,
123
125
msg.Service {
124
126
Host : svc .Spec .ClusterIP ,
@@ -144,6 +146,7 @@ func (b *ServiceResolver) Records(name string, exact bool) ([]msg.Service, error
144
146
},
145
147
)
146
148
}
149
+ glog .V (4 ).Infof ("Answered %s:%t with %#v" , dnsName , exact , services )
147
150
return services , nil
148
151
}
149
152
@@ -185,7 +188,7 @@ func (b *ServiceResolver) Records(name string, exact bool) ([]msg.Service, error
185
188
if len (portName ) == 0 {
186
189
portName = fmt .Sprintf ("unknown-port-%d" , port )
187
190
}
188
- srvName := fmt .Sprintf ("%s.%s.%s" , portName , shortName , name )
191
+ srvName := fmt .Sprintf ("%s.%s.%s.%s " , portName , shortName , name , b . base )
189
192
services = append (services , msg.Service {
190
193
Host : a .IP ,
191
194
Port : port ,
@@ -197,7 +200,7 @@ func (b *ServiceResolver) Records(name string, exact bool) ([]msg.Service, error
197
200
Text : "" ,
198
201
Key : msg .Path (srvName ),
199
202
})
200
- keyName := fmt .Sprintf ("_%s._%s.%s" , portName , p .Protocol , name )
203
+ keyName := fmt .Sprintf ("_%s._%s.%s.%s " , portName , p .Protocol , name , b . base )
201
204
services = append (services , msg.Service {
202
205
Host : srvName ,
203
206
Port : port ,
@@ -225,6 +228,7 @@ func (b *ServiceResolver) Records(name string, exact bool) ([]msg.Service, error
225
228
}
226
229
}
227
230
}
231
+ glog .V (4 ).Infof ("Answered %s:%t with %#v" , dnsName , exact , services )
228
232
return services , nil
229
233
}
230
234
return nil , nil
0 commit comments