@@ -204,7 +204,7 @@ func createEndpointSpec(name string) *api.Endpoints {
204
204
Subsets : []api.EndpointSubset {
205
205
{
206
206
Addresses : []api.EndpointAddress {
207
- {IP : "1.1.1.1" },
207
+ {IP : "1.1.1.1" , Hostname : "endpoint1" },
208
208
{IP : "1.1.1.2" },
209
209
},
210
210
NotReadyAddresses : []api.EndpointAddress {
@@ -272,12 +272,14 @@ var _ = Describe("DNS", func() {
272
272
273
273
// the DNS pod should be able to look up endpoints for names and wildcards
274
274
digForARecords (map [string ][]string {
275
- "kubernetes.default.endpoints" : kubeEndpoints ,
276
- "prefix.kubernetes.default.endpoints.cluster.local" : kubeEndpoints ,
275
+ "kubernetes.default.endpoints" : kubeEndpoints ,
277
276
278
277
fmt .Sprintf ("headless.%s.svc" , f .Namespace .Name ): readyEndpoints ,
279
278
fmt .Sprintf ("headless.%s.endpoints" , f .Namespace .Name ): readyEndpoints ,
280
279
fmt .Sprintf ("clusterip.%s.endpoints" , f .Namespace .Name ): readyEndpoints ,
280
+
281
+ fmt .Sprintf ("endpoint1.headless.%s.endpoints" , f .Namespace .Name ): {"1.1.1.1" },
282
+ fmt .Sprintf ("endpoint1.clusterip.%s.endpoints" , f .Namespace .Name ): {"1.1.1.1" },
281
283
}, expect ),
282
284
283
285
// the DNS pod should respond to its own request
0 commit comments