2016-07-01 14:55:37 +00: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 (
|
2017-10-25 04:21:42 +00:00
|
|
|
"context"
|
2016-07-01 14:55:37 +00:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"strconv"
|
|
|
|
|
2017-08-11 18:45:52 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/log/level"
|
2016-07-01 14:55:37 +00:00
|
|
|
"github.com/prometheus/common/model"
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
"github.com/prometheus/prometheus/discovery/targetgroup"
|
2016-07-01 14:55:37 +00:00
|
|
|
"github.com/prometheus/prometheus/util/strutil"
|
2017-05-11 08:29:10 +00:00
|
|
|
"k8s.io/client-go/pkg/api"
|
|
|
|
apiv1 "k8s.io/client-go/pkg/api/v1"
|
|
|
|
"k8s.io/client-go/tools/cache"
|
2016-07-01 14:55:37 +00:00
|
|
|
)
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Node discovers Kubernetes nodes.
|
|
|
|
type Node struct {
|
|
|
|
logger log.Logger
|
|
|
|
informer cache.SharedInformer
|
|
|
|
store cache.Store
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// NewNode returns a new node discovery.
|
|
|
|
func NewNode(l log.Logger, inf cache.SharedInformer) *Node {
|
2017-08-11 18:45:52 +00:00
|
|
|
if l == nil {
|
|
|
|
l = log.NewNopLogger()
|
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
return &Node{logger: l, informer: inf, store: inf.GetStore()}
|
|
|
|
}
|
|
|
|
|
2018-01-08 23:59:18 +00:00
|
|
|
// Run implements the Discoverer interface.
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
func (n *Node) Run(ctx context.Context, ch chan<- []*targetgroup.Group) {
|
2016-10-07 12:53:11 +00:00
|
|
|
// Send full initial set of pod targets.
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
var initial []*targetgroup.Group
|
2016-10-07 12:53:11 +00:00
|
|
|
for _, o := range n.store.List() {
|
|
|
|
tg := n.buildNode(o.(*apiv1.Node))
|
|
|
|
initial = append(initial, tg)
|
|
|
|
}
|
2016-07-01 14:55:37 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
2016-10-07 12:53:11 +00:00
|
|
|
case ch <- initial:
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Send target groups for service updates.
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
send := func(tg *targetgroup.Group) {
|
2018-01-30 15:00:33 +00:00
|
|
|
if tg == nil {
|
|
|
|
return
|
|
|
|
}
|
2016-07-01 14:55:37 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
case ch <- []*targetgroup.Group{tg}:
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
n.informer.AddEventHandler(cache.ResourceEventHandlerFuncs{
|
|
|
|
AddFunc: func(o interface{}) {
|
2016-10-21 08:48:28 +00:00
|
|
|
eventCount.WithLabelValues("node", "add").Inc()
|
2016-11-21 10:44:48 +00:00
|
|
|
|
2016-11-14 15:21:38 +00:00
|
|
|
node, err := convertToNode(o)
|
|
|
|
if err != nil {
|
2017-08-11 18:45:52 +00:00
|
|
|
level.Error(n.logger).Log("msg", "converting to Node object failed", "err", err)
|
2016-11-14 15:21:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
send(n.buildNode(node))
|
2016-07-01 14:55:37 +00:00
|
|
|
},
|
2016-10-07 12:53:11 +00:00
|
|
|
DeleteFunc: func(o interface{}) {
|
2016-10-21 08:48:28 +00:00
|
|
|
eventCount.WithLabelValues("node", "delete").Inc()
|
2016-11-21 10:44:48 +00:00
|
|
|
|
2016-11-14 15:21:38 +00:00
|
|
|
node, err := convertToNode(o)
|
|
|
|
if err != nil {
|
2017-08-11 18:45:52 +00:00
|
|
|
level.Error(n.logger).Log("msg", "converting to Node object failed", "err", err)
|
2016-11-14 15:21:38 +00:00
|
|
|
return
|
|
|
|
}
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
send(&targetgroup.Group{Source: nodeSource(node)})
|
2016-10-07 12:53:11 +00:00
|
|
|
},
|
|
|
|
UpdateFunc: func(_, o interface{}) {
|
2016-10-21 08:48:28 +00:00
|
|
|
eventCount.WithLabelValues("node", "update").Inc()
|
2016-11-21 10:44:48 +00:00
|
|
|
|
2016-11-14 15:21:38 +00:00
|
|
|
node, err := convertToNode(o)
|
|
|
|
if err != nil {
|
2017-08-11 18:45:52 +00:00
|
|
|
level.Error(n.logger).Log("msg", "converting to Node object failed", "err", err)
|
2016-11-14 15:21:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
send(n.buildNode(node))
|
2016-10-07 12:53:11 +00:00
|
|
|
},
|
|
|
|
})
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Block until the target provider is explicitly canceled.
|
|
|
|
<-ctx.Done()
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 15:21:38 +00:00
|
|
|
func convertToNode(o interface{}) (*apiv1.Node, error) {
|
2017-09-04 11:10:44 +00:00
|
|
|
node, ok := o.(*apiv1.Node)
|
|
|
|
if ok {
|
|
|
|
return node, nil
|
2016-11-14 15:21:38 +00:00
|
|
|
}
|
|
|
|
|
2017-09-04 11:10:44 +00:00
|
|
|
deletedState, ok := o.(cache.DeletedFinalStateUnknown)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("Received unexpected object: %v", o)
|
|
|
|
}
|
|
|
|
node, ok = deletedState.Obj.(*apiv1.Node)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("DeletedFinalStateUnknown contained non-Node object: %v", deletedState.Obj)
|
|
|
|
}
|
2016-11-14 15:21:38 +00:00
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func nodeSource(n *apiv1.Node) string {
|
2016-10-12 13:23:11 +00:00
|
|
|
return "node/" + n.Name
|
2016-10-07 12:53:11 +00:00
|
|
|
}
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
const (
|
|
|
|
nodeNameLabel = metaLabelPrefix + "node_name"
|
|
|
|
nodeLabelPrefix = metaLabelPrefix + "node_label_"
|
|
|
|
nodeAnnotationPrefix = metaLabelPrefix + "node_annotation_"
|
|
|
|
nodeAddressPrefix = metaLabelPrefix + "node_address_"
|
|
|
|
)
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func nodeLabels(n *apiv1.Node) model.LabelSet {
|
2017-09-04 11:10:44 +00:00
|
|
|
ls := make(model.LabelSet, len(n.Labels)+len(n.Annotations)+1)
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
ls[nodeNameLabel] = lv(n.Name)
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for k, v := range n.Labels {
|
|
|
|
ln := strutil.SanitizeLabelName(nodeLabelPrefix + k)
|
|
|
|
ls[model.LabelName(ln)] = lv(v)
|
|
|
|
}
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for k, v := range n.Annotations {
|
|
|
|
ln := strutil.SanitizeLabelName(nodeAnnotationPrefix + k)
|
|
|
|
ls[model.LabelName(ln)] = lv(v)
|
|
|
|
}
|
|
|
|
return ls
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
func (n *Node) buildNode(node *apiv1.Node) *targetgroup.Group {
|
|
|
|
tg := &targetgroup.Group{
|
2016-10-07 12:53:11 +00:00
|
|
|
Source: nodeSource(node),
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
tg.Labels = nodeLabels(node)
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
addr, addrMap, err := nodeAddress(node)
|
2016-07-01 14:55:37 +00:00
|
|
|
if err != nil {
|
2017-08-11 18:45:52 +00:00
|
|
|
level.Warn(n.logger).Log("msg", "No node address found", "err", err)
|
2016-10-07 12:53:11 +00:00
|
|
|
return nil
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
addr = net.JoinHostPort(addr, strconv.FormatInt(int64(node.Status.DaemonEndpoints.KubeletEndpoint.Port), 10))
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
t := model.LabelSet{
|
|
|
|
model.AddressLabel: lv(addr),
|
|
|
|
model.InstanceLabel: lv(node.Name),
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for ty, a := range addrMap {
|
|
|
|
ln := strutil.SanitizeLabelName(nodeAddressPrefix + string(ty))
|
|
|
|
t[model.LabelName(ln)] = lv(a[0])
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
tg.Targets = append(tg.Targets, t)
|
2016-07-01 14:55:37 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
return tg
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// nodeAddresses returns the provided node's address, based on the priority:
|
|
|
|
// 1. NodeInternalIP
|
|
|
|
// 2. NodeExternalIP
|
|
|
|
// 3. NodeLegacyHostIP
|
2016-10-07 12:53:11 +00:00
|
|
|
// 3. NodeHostName
|
2016-07-01 14:55:37 +00:00
|
|
|
//
|
2016-10-07 12:53:11 +00:00
|
|
|
// Derived from k8s.io/kubernetes/pkg/util/node/node.go
|
|
|
|
func nodeAddress(node *apiv1.Node) (string, map[apiv1.NodeAddressType][]string, error) {
|
|
|
|
m := map[apiv1.NodeAddressType][]string{}
|
|
|
|
for _, a := range node.Status.Addresses {
|
|
|
|
m[a.Type] = append(m[a.Type], a.Address)
|
|
|
|
}
|
|
|
|
|
|
|
|
if addresses, ok := m[apiv1.NodeInternalIP]; ok {
|
|
|
|
return addresses[0], m, nil
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
if addresses, ok := m[apiv1.NodeExternalIP]; ok {
|
|
|
|
return addresses[0], m, nil
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
if addresses, ok := m[apiv1.NodeAddressType(api.NodeLegacyHostIP)]; ok {
|
|
|
|
return addresses[0], m, nil
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
if addresses, ok := m[apiv1.NodeHostName]; ok {
|
|
|
|
return addresses[0], m, nil
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
return "", m, fmt.Errorf("host address unknown")
|
2016-07-01 14:55:37 +00:00
|
|
|
}
|