2016-10-14 08:16:06 -07:00
|
|
|
// Copyright 2016 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
2020-04-06 09:23:02 -07:00
|
|
|
"context"
|
2016-10-14 08:16:06 -07:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/prometheus/common/model"
|
2019-01-28 07:42:25 -08:00
|
|
|
v1 "k8s.io/api/core/v1"
|
2017-05-11 01:29:10 -07:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2018-06-14 07:49:43 -07:00
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
2017-11-24 04:24:13 -08:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2020-03-22 16:23:44 -07:00
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/discovery/targetgroup"
|
2016-10-14 08:16:06 -07:00
|
|
|
)
|
|
|
|
|
2016-10-17 02:05:13 -07:00
|
|
|
func makeEndpoints() *v1.Endpoints {
|
2021-10-22 01:06:44 -07:00
|
|
|
nodeName := "foobar"
|
2016-10-14 08:16:06 -07:00
|
|
|
return &v1.Endpoints{
|
2017-05-11 01:29:10 -07:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
Subsets: []v1.EndpointSubset{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Addresses: []v1.EndpointAddress{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2019-05-16 00:49:00 -07:00
|
|
|
IP: "1.2.3.4",
|
|
|
|
Hostname: "testendpoint1",
|
|
|
|
NodeName: &nodeName,
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Ports: []v1.EndpointPort{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "testport",
|
|
|
|
Port: 9000,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Addresses: []v1.EndpointAddress{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
IP: "2.3.4.5",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
NotReadyAddresses: []v1.EndpointAddress{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
IP: "2.3.4.5",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Ports: []v1.EndpointPort{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "testport",
|
|
|
|
Port: 9001,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 09:35:14 -07:00
|
|
|
func TestEndpointsDiscoveryBeforeRun(t *testing.T) {
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{})
|
2016-10-14 08:16:06 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
2018-04-09 09:35:14 -07:00
|
|
|
beforeRun: func() {
|
|
|
|
obj := makeEndpoints()
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Endpoints(obj.Namespace).Create(context.Background(), obj, metav1.CreateOptions{})
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
expectedMaxItems: 1,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
2016-10-14 08:16:06 -07:00
|
|
|
Targets: []model.LabelSet{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
"__address__": "1.2.3.4:9000",
|
2019-05-16 00:49:00 -07:00
|
|
|
"__meta_kubernetes_endpoint_hostname": "testendpoint1",
|
|
|
|
"__meta_kubernetes_endpoint_node_name": "foobar",
|
2016-10-14 08:16:06 -07:00
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "false",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
|
|
|
"__meta_kubernetes_namespace": "default",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
},
|
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
|
|
|
|
2016-10-17 02:05:13 -07:00
|
|
|
func TestEndpointsDiscoveryAdd(t *testing.T) {
|
2018-04-09 09:35:14 -07:00
|
|
|
obj := &v1.Pod{
|
2017-05-11 01:29:10 -07:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "testpod",
|
|
|
|
Namespace: "default",
|
2017-11-24 04:24:13 -08:00
|
|
|
UID: types.UID("deadbeef"),
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
|
|
|
Spec: v1.PodSpec{
|
|
|
|
NodeName: "testnode",
|
|
|
|
Containers: []v1.Container{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "c1",
|
|
|
|
Ports: []v1.ContainerPort{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "mainport",
|
|
|
|
ContainerPort: 9000,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "c2",
|
|
|
|
Ports: []v1.ContainerPort{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
Name: "sideport",
|
|
|
|
ContainerPort: 9001,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Status: v1.PodStatus{
|
|
|
|
HostIP: "2.3.4.5",
|
|
|
|
PodIP: "1.2.3.4",
|
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
}
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{}, obj)
|
2016-10-14 08:16:06 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
|
|
|
afterStart: func() {
|
2018-04-09 09:35:14 -07:00
|
|
|
obj := &v1.Endpoints{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
Subsets: []v1.EndpointSubset{
|
|
|
|
{
|
|
|
|
Addresses: []v1.EndpointAddress{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2018-04-09 09:35:14 -07:00
|
|
|
IP: "4.3.2.1",
|
|
|
|
TargetRef: &v1.ObjectReference{
|
|
|
|
Kind: "Pod",
|
|
|
|
Name: "testpod",
|
|
|
|
Namespace: "default",
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
Ports: []v1.EndpointPort{
|
|
|
|
{
|
|
|
|
Name: "testport",
|
|
|
|
Port: 9000,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
}
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Endpoints(obj.Namespace).Create(context.Background(), obj, metav1.CreateOptions{})
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
expectedMaxItems: 1,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
2016-10-14 08:16:06 -07:00
|
|
|
Targets: []model.LabelSet{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2018-03-09 02:07:00 -08:00
|
|
|
"__address__": "4.3.2.1:9000",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
"__meta_kubernetes_endpoint_address_target_kind": "Pod",
|
|
|
|
"__meta_kubernetes_endpoint_address_target_name": "testpod",
|
|
|
|
"__meta_kubernetes_pod_name": "testpod",
|
|
|
|
"__meta_kubernetes_pod_ip": "1.2.3.4",
|
|
|
|
"__meta_kubernetes_pod_ready": "unknown",
|
2018-11-06 06:40:24 -08:00
|
|
|
"__meta_kubernetes_pod_phase": "",
|
2018-03-09 02:07:00 -08:00
|
|
|
"__meta_kubernetes_pod_node_name": "testnode",
|
|
|
|
"__meta_kubernetes_pod_host_ip": "2.3.4.5",
|
|
|
|
"__meta_kubernetes_pod_container_name": "c1",
|
|
|
|
"__meta_kubernetes_pod_container_port_name": "mainport",
|
|
|
|
"__meta_kubernetes_pod_container_port_number": "9000",
|
|
|
|
"__meta_kubernetes_pod_container_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_pod_uid": "deadbeef",
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
"__address__": "1.2.3.4:9001",
|
|
|
|
"__meta_kubernetes_pod_name": "testpod",
|
|
|
|
"__meta_kubernetes_pod_ip": "1.2.3.4",
|
|
|
|
"__meta_kubernetes_pod_ready": "unknown",
|
2018-11-06 06:40:24 -08:00
|
|
|
"__meta_kubernetes_pod_phase": "",
|
2016-10-14 08:16:06 -07:00
|
|
|
"__meta_kubernetes_pod_node_name": "testnode",
|
|
|
|
"__meta_kubernetes_pod_host_ip": "2.3.4.5",
|
|
|
|
"__meta_kubernetes_pod_container_name": "c2",
|
|
|
|
"__meta_kubernetes_pod_container_port_name": "sideport",
|
2016-10-17 02:05:13 -07:00
|
|
|
"__meta_kubernetes_pod_container_port_number": "9001",
|
2016-10-14 08:16:06 -07:00
|
|
|
"__meta_kubernetes_pod_container_port_protocol": "TCP",
|
2017-11-24 04:24:13 -08:00
|
|
|
"__meta_kubernetes_pod_uid": "deadbeef",
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
"__meta_kubernetes_namespace": "default",
|
|
|
|
},
|
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
|
|
|
|
2016-10-17 02:05:13 -07:00
|
|
|
func TestEndpointsDiscoveryDelete(t *testing.T) {
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{}, makeEndpoints())
|
2016-10-14 08:16:06 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
2018-04-09 09:35:14 -07:00
|
|
|
discovery: n,
|
|
|
|
afterStart: func() {
|
|
|
|
obj := makeEndpoints()
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Endpoints(obj.Namespace).Delete(context.Background(), obj.Name, metav1.DeleteOptions{})
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
expectedMaxItems: 2,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
2016-11-14 07:21:38 -08:00
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
|
|
|
|
2016-10-17 02:05:13 -07:00
|
|
|
func TestEndpointsDiscoveryUpdate(t *testing.T) {
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{}, makeEndpoints())
|
2016-10-14 08:16:06 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
|
|
|
afterStart: func() {
|
2018-04-09 09:35:14 -07:00
|
|
|
obj := &v1.Endpoints{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
Subsets: []v1.EndpointSubset{
|
|
|
|
{
|
|
|
|
Addresses: []v1.EndpointAddress{
|
|
|
|
{
|
|
|
|
IP: "1.2.3.4",
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
Ports: []v1.EndpointPort{
|
|
|
|
{
|
|
|
|
Name: "testport",
|
|
|
|
Port: 9000,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Addresses: []v1.EndpointAddress{
|
|
|
|
{
|
|
|
|
IP: "2.3.4.5",
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
Ports: []v1.EndpointPort{
|
|
|
|
{
|
|
|
|
Name: "testport",
|
|
|
|
Port: 9001,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
}
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Endpoints(obj.Namespace).Update(context.Background(), obj, metav1.UpdateOptions{})
|
2016-10-14 08:16:06 -07:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
expectedMaxItems: 2,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
2016-10-14 08:16:06 -07:00
|
|
|
Targets: []model.LabelSet{
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
"__address__": "1.2.3.4:9000",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
2017-03-16 16:29:47 -07:00
|
|
|
{
|
2016-10-14 08:16:06 -07:00
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
|
|
|
"__meta_kubernetes_namespace": "default",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
},
|
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
2018-01-30 07:00:33 -08:00
|
|
|
|
|
|
|
func TestEndpointsDiscoveryEmptySubsets(t *testing.T) {
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{}, makeEndpoints())
|
2018-01-30 07:00:33 -08:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
|
|
|
afterStart: func() {
|
2018-04-09 09:35:14 -07:00
|
|
|
obj := &v1.Endpoints{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
Subsets: []v1.EndpointSubset{},
|
|
|
|
}
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Endpoints(obj.Namespace).Update(context.Background(), obj, metav1.UpdateOptions{})
|
2018-01-30 07:00:33 -08:00
|
|
|
},
|
2018-04-09 09:35:14 -07:00
|
|
|
expectedMaxItems: 2,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
2018-01-30 07:00:33 -08:00
|
|
|
Labels: model.LabelSet{
|
|
|
|
"__meta_kubernetes_namespace": "default",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
},
|
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
2018-04-09 09:35:14 -07:00
|
|
|
|
|
|
|
func TestEndpointsDiscoveryWithService(t *testing.T) {
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{}, makeEndpoints())
|
2018-04-09 09:35:14 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
|
|
|
beforeRun: func() {
|
|
|
|
obj := &v1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
Labels: map[string]string{
|
2019-04-15 11:04:50 -07:00
|
|
|
"app/name": "test",
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Services(obj.Namespace).Create(context.Background(), obj, metav1.CreateOptions{})
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
expectedMaxItems: 1,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
|
|
|
Targets: []model.LabelSet{
|
|
|
|
{
|
|
|
|
"__address__": "1.2.3.4:9000",
|
2019-05-16 00:49:00 -07:00
|
|
|
"__meta_kubernetes_endpoint_hostname": "testendpoint1",
|
|
|
|
"__meta_kubernetes_endpoint_node_name": "foobar",
|
2018-04-09 09:35:14 -07:00
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "false",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
2019-04-15 11:04:50 -07:00
|
|
|
"__meta_kubernetes_namespace": "default",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
"__meta_kubernetes_service_label_app_name": "test",
|
|
|
|
"__meta_kubernetes_service_labelpresent_app_name": "true",
|
|
|
|
"__meta_kubernetes_service_name": "testendpoints",
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEndpointsDiscoveryWithServiceUpdate(t *testing.T) {
|
2019-01-28 07:42:25 -08:00
|
|
|
n, c := makeDiscovery(RoleEndpoint, NamespaceDiscovery{}, makeEndpoints())
|
2018-04-09 09:35:14 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
|
|
|
beforeRun: func() {
|
|
|
|
obj := &v1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
Labels: map[string]string{
|
2019-04-15 11:04:50 -07:00
|
|
|
"app/name": "test",
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Services(obj.Namespace).Create(context.Background(), obj, metav1.CreateOptions{})
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
afterStart: func() {
|
|
|
|
obj := &v1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "default",
|
|
|
|
Labels: map[string]string{
|
2019-04-15 11:04:50 -07:00
|
|
|
"app/name": "svc",
|
2018-04-09 09:35:14 -07:00
|
|
|
"component": "testing",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-04-06 09:23:02 -07:00
|
|
|
c.CoreV1().Services(obj.Namespace).Update(context.Background(), obj, metav1.UpdateOptions{})
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
expectedMaxItems: 2,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/default/testendpoints": {
|
|
|
|
Targets: []model.LabelSet{
|
|
|
|
{
|
|
|
|
"__address__": "1.2.3.4:9000",
|
2019-05-16 00:49:00 -07:00
|
|
|
"__meta_kubernetes_endpoint_hostname": "testendpoint1",
|
|
|
|
"__meta_kubernetes_endpoint_node_name": "foobar",
|
2018-04-09 09:35:14 -07:00
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "false",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
2019-04-10 05:21:42 -07:00
|
|
|
"__meta_kubernetes_namespace": "default",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
2019-04-15 11:04:50 -07:00
|
|
|
"__meta_kubernetes_service_label_app_name": "svc",
|
|
|
|
"__meta_kubernetes_service_labelpresent_app_name": "true",
|
2019-04-10 05:21:42 -07:00
|
|
|
"__meta_kubernetes_service_name": "testendpoints",
|
|
|
|
"__meta_kubernetes_service_label_component": "testing",
|
|
|
|
"__meta_kubernetes_service_labelpresent_component": "true",
|
2018-04-09 09:35:14 -07:00
|
|
|
},
|
|
|
|
Source: "endpoints/default/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|
2018-06-14 07:49:43 -07:00
|
|
|
|
|
|
|
func TestEndpointsDiscoveryNamespaces(t *testing.T) {
|
|
|
|
epOne := makeEndpoints()
|
|
|
|
epOne.Namespace = "ns1"
|
|
|
|
objs := []runtime.Object{
|
|
|
|
epOne,
|
|
|
|
&v1.Endpoints{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "ns2",
|
|
|
|
},
|
|
|
|
Subsets: []v1.EndpointSubset{
|
|
|
|
{
|
|
|
|
Addresses: []v1.EndpointAddress{
|
|
|
|
{
|
|
|
|
IP: "4.3.2.1",
|
|
|
|
TargetRef: &v1.ObjectReference{
|
|
|
|
Kind: "Pod",
|
|
|
|
Name: "testpod",
|
|
|
|
Namespace: "ns2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Ports: []v1.EndpointPort{
|
|
|
|
{
|
|
|
|
Name: "testport",
|
|
|
|
Port: 9000,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&v1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testendpoints",
|
|
|
|
Namespace: "ns1",
|
|
|
|
Labels: map[string]string{
|
|
|
|
"app": "app1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&v1.Pod{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "testpod",
|
|
|
|
Namespace: "ns2",
|
|
|
|
UID: types.UID("deadbeef"),
|
|
|
|
},
|
|
|
|
Spec: v1.PodSpec{
|
|
|
|
NodeName: "testnode",
|
|
|
|
Containers: []v1.Container{
|
|
|
|
{
|
|
|
|
Name: "c1",
|
|
|
|
Ports: []v1.ContainerPort{
|
|
|
|
{
|
|
|
|
Name: "mainport",
|
|
|
|
ContainerPort: 9000,
|
|
|
|
Protocol: v1.ProtocolTCP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Status: v1.PodStatus{
|
|
|
|
HostIP: "2.3.4.5",
|
|
|
|
PodIP: "4.3.2.1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2019-01-28 07:42:25 -08:00
|
|
|
n, _ := makeDiscovery(RoleEndpoint, NamespaceDiscovery{Names: []string{"ns1", "ns2"}}, objs...)
|
2018-06-14 07:49:43 -07:00
|
|
|
|
|
|
|
k8sDiscoveryTest{
|
|
|
|
discovery: n,
|
|
|
|
expectedMaxItems: 2,
|
|
|
|
expectedRes: map[string]*targetgroup.Group{
|
|
|
|
"endpoints/ns1/testendpoints": {
|
|
|
|
Targets: []model.LabelSet{
|
|
|
|
{
|
|
|
|
"__address__": "1.2.3.4:9000",
|
2019-05-16 00:49:00 -07:00
|
|
|
"__meta_kubernetes_endpoint_hostname": "testendpoint1",
|
|
|
|
"__meta_kubernetes_endpoint_node_name": "foobar",
|
2018-06-14 07:49:43 -07:00
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"__address__": "2.3.4.5:9001",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "false",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
2019-04-10 05:21:42 -07:00
|
|
|
"__meta_kubernetes_namespace": "ns1",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
"__meta_kubernetes_service_label_app": "app1",
|
|
|
|
"__meta_kubernetes_service_labelpresent_app": "true",
|
|
|
|
"__meta_kubernetes_service_name": "testendpoints",
|
2018-06-14 07:49:43 -07:00
|
|
|
},
|
|
|
|
Source: "endpoints/ns1/testendpoints",
|
|
|
|
},
|
|
|
|
"endpoints/ns2/testendpoints": {
|
|
|
|
Targets: []model.LabelSet{
|
|
|
|
{
|
|
|
|
"__address__": "4.3.2.1:9000",
|
|
|
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
|
|
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_endpoint_ready": "true",
|
|
|
|
"__meta_kubernetes_endpoint_address_target_kind": "Pod",
|
|
|
|
"__meta_kubernetes_endpoint_address_target_name": "testpod",
|
|
|
|
"__meta_kubernetes_pod_name": "testpod",
|
|
|
|
"__meta_kubernetes_pod_ip": "4.3.2.1",
|
|
|
|
"__meta_kubernetes_pod_ready": "unknown",
|
2018-11-06 06:40:24 -08:00
|
|
|
"__meta_kubernetes_pod_phase": "",
|
2018-06-14 07:49:43 -07:00
|
|
|
"__meta_kubernetes_pod_node_name": "testnode",
|
|
|
|
"__meta_kubernetes_pod_host_ip": "2.3.4.5",
|
|
|
|
"__meta_kubernetes_pod_container_name": "c1",
|
|
|
|
"__meta_kubernetes_pod_container_port_name": "mainport",
|
|
|
|
"__meta_kubernetes_pod_container_port_number": "9000",
|
|
|
|
"__meta_kubernetes_pod_container_port_protocol": "TCP",
|
|
|
|
"__meta_kubernetes_pod_uid": "deadbeef",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Labels: model.LabelSet{
|
|
|
|
"__meta_kubernetes_namespace": "ns2",
|
|
|
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
|
|
|
},
|
|
|
|
Source: "endpoints/ns2/testendpoints",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}.Run(t)
|
|
|
|
}
|