forked from kubernetes-retired/heapster
-
Notifications
You must be signed in to change notification settings - Fork 3
/
coreos.go
99 lines (84 loc) · 2.59 KB
/
coreos.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2014 Google Inc. All Rights Reserved.
//
// 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 nodes
import (
"fmt"
"net"
"net/http"
"time"
fleetClient "github.com/coreos/fleet/client"
"github.com/coreos/fleet/etcd"
fleetPkg "github.com/coreos/fleet/pkg"
"github.com/coreos/fleet/registry"
"github.com/golang/glog"
)
const etcdRegistry = "/_coreos.com/fleet/"
type fleetNodes struct {
client fleetClient.API
nodes *NodeList
apiErrors int
recentApiError error
}
func (self *fleetNodes) List() (*NodeList, error) {
nodes, err := self.client.Machines()
if err != nil {
self.apiErrors++
self.recentApiError = err
glog.V(1).Infof("failed to get list of machines from fleet - %q", err)
return nil, err
}
nodeList := newNodeList()
for _, node := range nodes {
nodeList.Items[Host(node.ID)] = Info{PublicIP: node.PublicIP, InternalIP: node.PublicIP}
}
self.nodes = nodeList
return nodeList, nil
}
func (self *fleetNodes) DebugInfo() string {
output := fmt.Sprintf("Fleet Nodes plugin: Aggregate error count: %d; recent error: %v", self.apiErrors, self.recentApiError)
if self.nodes != nil {
output = fmt.Sprintf("%s\nCadvisor Nodes: %v", output, self.nodes.Items)
}
return output
}
func getFleetRegistryClient(fleetEndpoints []string) (fleetClient.API, error) {
var dial func(string, string) (net.Conn, error)
tlsConfig, err := fleetPkg.ReadTLSConfigFiles("", "", "")
if err != nil {
return nil, err
}
trans := &http.Transport{
Dial: dial,
TLSClientConfig: tlsConfig,
}
timeout := 3 * time.Second
eClient, err := etcd.NewClient(fleetEndpoints, trans, timeout)
if err != nil {
return nil, err
}
reg := registry.NewEtcdRegistry(eClient, etcdRegistry)
return &fleetClient.RegistryClient{Registry: reg}, nil
}
func NewCoreOSNodes(fleetEndpoints []string) (NodesApi, error) {
client, err := getFleetRegistryClient(fleetEndpoints)
if err != nil {
return nil, fmt.Errorf("failed to get fleet client - %q", err)
}
return &fleetNodes{
client: client,
nodes: nil,
apiErrors: 0,
recentApiError: nil,
}, nil
}