
The cloudprovider is being refactored out of kubernetes core. This is being done by moving all the cloud-specific calls from kube-apiserver, kubelet and kube-controller-manager into a separately maintained binary(by vendors) called cloud-controller-manager. The Kubelet relies on the cloudprovider to detect information about the node that it is running on. Some of the cloudproviders worked by querying local information to obtain this information. In the new world of things, local information cannot be relied on, since cloud-controller-manager will not run on every node. Only one active instance of it will be run in the cluster. Today, all calls to the cloudprovider are based on the nodename. Nodenames are unqiue within the kubernetes cluster, but generally not unique within the cloud. This model of addressing nodes by nodename will not work in the future because local services cannot be queried to uniquely identify a node in the cloud. Therefore, I propose that we perform all cloudprovider calls based on ProviderID. This ID is a unique identifier for identifying a node on an external database (such as the instanceID in aws cloud).
313 lines
9.0 KiB
Go
313 lines
9.0 KiB
Go
/*
|
|
Copyright 2015 The Kubernetes 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 mesos
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"regexp"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
log "github.com/golang/glog"
|
|
"github.com/mesos/mesos-go/detector"
|
|
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/kubernetes/pkg/api/v1"
|
|
"k8s.io/kubernetes/pkg/cloudprovider"
|
|
)
|
|
|
|
const (
|
|
ProviderName = "mesos"
|
|
|
|
// KubernetesExecutorName is shared between contrib/mesos and Mesos cloud provider.
|
|
// Because cloud provider -> contrib dependencies are forbidden, this constant
|
|
// is defined here, not in contrib.
|
|
KubernetesExecutorName = "Kubelet-Executor"
|
|
)
|
|
|
|
var (
|
|
CloudProvider *MesosCloud
|
|
|
|
noHostNameSpecified = errors.New("No hostname specified")
|
|
)
|
|
|
|
func init() {
|
|
cloudprovider.RegisterCloudProvider(
|
|
ProviderName,
|
|
func(configReader io.Reader) (cloudprovider.Interface, error) {
|
|
provider, err := newMesosCloud(configReader)
|
|
if err == nil {
|
|
CloudProvider = provider
|
|
}
|
|
return provider, err
|
|
})
|
|
}
|
|
|
|
type MesosCloud struct {
|
|
client *mesosClient
|
|
config *Config
|
|
}
|
|
|
|
func (c *MesosCloud) MasterURI() string {
|
|
return c.config.MesosMaster
|
|
}
|
|
|
|
func newMesosCloud(configReader io.Reader) (*MesosCloud, error) {
|
|
config, err := readConfig(configReader)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
log.V(1).Infof("new mesos cloud, master='%v'", config.MesosMaster)
|
|
if d, err := detector.New(config.MesosMaster); err != nil {
|
|
log.V(1).Infof("failed to create master detector: %v", err)
|
|
return nil, err
|
|
} else if cl, err := newMesosClient(d,
|
|
config.MesosHttpClientTimeout.Duration,
|
|
config.StateCacheTTL.Duration); err != nil {
|
|
log.V(1).Infof("failed to create mesos cloud client: %v", err)
|
|
return nil, err
|
|
} else {
|
|
return &MesosCloud{client: cl, config: config}, nil
|
|
}
|
|
}
|
|
|
|
// Implementation of Instances.CurrentNodeName
|
|
func (c *MesosCloud) CurrentNodeName(hostname string) (types.NodeName, error) {
|
|
return types.NodeName(hostname), nil
|
|
}
|
|
|
|
func (c *MesosCloud) AddSSHKeyToAllInstances(user string, keyData []byte) error {
|
|
return errors.New("unimplemented")
|
|
}
|
|
|
|
// Instances returns a copy of the Mesos cloud Instances implementation.
|
|
// Mesos natively provides minimal cloud-type resources. More robust cloud
|
|
// support requires a combination of Mesos and cloud-specific knowledge.
|
|
func (c *MesosCloud) Instances() (cloudprovider.Instances, bool) {
|
|
return c, true
|
|
}
|
|
|
|
// LoadBalancer always returns nil, false in this implementation.
|
|
// Mesos does not provide any type of native load balancing by default,
|
|
// so this implementation always returns (nil, false).
|
|
func (c *MesosCloud) LoadBalancer() (cloudprovider.LoadBalancer, bool) {
|
|
return nil, false
|
|
}
|
|
|
|
// Zones always returns nil, false in this implementation.
|
|
// Mesos does not provide any type of native region or zone awareness,
|
|
// so this implementation always returns (nil, false).
|
|
func (c *MesosCloud) Zones() (cloudprovider.Zones, bool) {
|
|
return nil, false
|
|
}
|
|
|
|
// Clusters returns a copy of the Mesos cloud Clusters implementation.
|
|
// Mesos does not provide support for multiple clusters.
|
|
func (c *MesosCloud) Clusters() (cloudprovider.Clusters, bool) {
|
|
return c, true
|
|
}
|
|
|
|
// Routes always returns nil, false in this implementation.
|
|
func (c *MesosCloud) Routes() (cloudprovider.Routes, bool) {
|
|
return nil, false
|
|
}
|
|
|
|
// ProviderName returns the cloud provider ID.
|
|
func (c *MesosCloud) ProviderName() string {
|
|
return ProviderName
|
|
}
|
|
|
|
// ScrubDNS filters DNS settings for pods.
|
|
func (c *MesosCloud) ScrubDNS(nameservers, searches []string) (nsOut, srchOut []string) {
|
|
return nameservers, searches
|
|
}
|
|
|
|
// ListClusters lists the names of the available Mesos clusters.
|
|
func (c *MesosCloud) ListClusters() ([]string, error) {
|
|
// Always returns a single cluster (this one!)
|
|
ctx, cancel := context.WithCancel(context.TODO())
|
|
defer cancel()
|
|
name, err := c.client.clusterName(ctx)
|
|
return []string{name}, err
|
|
}
|
|
|
|
// Master gets back the address (either DNS name or IP address) of the leading Mesos master node for the cluster.
|
|
func (c *MesosCloud) Master(clusterName string) (string, error) {
|
|
clusters, err := c.ListClusters()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
for _, name := range clusters {
|
|
if name == clusterName {
|
|
if c.client.master == "" {
|
|
return "", errors.New("The currently leading master is unknown.")
|
|
}
|
|
|
|
host, _, err := net.SplitHostPort(c.client.master)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return host, nil
|
|
}
|
|
}
|
|
return "", fmt.Errorf("The supplied cluster '%v' does not exist", clusterName)
|
|
}
|
|
|
|
// ipAddress returns an IP address of the specified instance.
|
|
func ipAddress(name string) (net.IP, error) {
|
|
if name == "" {
|
|
return nil, noHostNameSpecified
|
|
}
|
|
ipaddr := net.ParseIP(name)
|
|
if ipaddr != nil {
|
|
return ipaddr, nil
|
|
}
|
|
iplist, err := net.LookupIP(name)
|
|
if err != nil {
|
|
log.V(2).Infof("failed to resolve IP from host name '%v': %v", name, err)
|
|
return nil, err
|
|
}
|
|
ipaddr = iplist[0]
|
|
log.V(2).Infof("resolved host '%v' to '%v'", name, ipaddr)
|
|
return ipaddr, nil
|
|
}
|
|
|
|
// mapNodeNameToPrivateDNSName maps a k8s NodeName to an mesos hostname.
|
|
// This is a simple string cast
|
|
func mapNodeNameToHostname(nodeName types.NodeName) string {
|
|
return string(nodeName)
|
|
}
|
|
|
|
// ExternalID returns the cloud provider ID of the instance with the specified nodeName (deprecated).
|
|
func (c *MesosCloud) ExternalID(nodeName types.NodeName) (string, error) {
|
|
hostname := mapNodeNameToHostname(nodeName)
|
|
//TODO(jdef) use a timeout here? 15s?
|
|
ctx, cancel := context.WithCancel(context.TODO())
|
|
defer cancel()
|
|
|
|
nodes, err := c.client.listSlaves(ctx)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
node := nodes[hostname]
|
|
if node == nil {
|
|
return "", cloudprovider.InstanceNotFound
|
|
}
|
|
|
|
ip, err := ipAddress(node.hostname)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return ip.String(), nil
|
|
}
|
|
|
|
// InstanceID returns the cloud provider ID of the instance with the specified nodeName.
|
|
func (c *MesosCloud) InstanceID(nodeName types.NodeName) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
// InstanceTypeByProviderID returns the cloudprovider instance type of the node with the specified unique providerID
|
|
// This method will not be called from the node that is requesting this ID. i.e. metadata service
|
|
// and other local methods cannot be used here
|
|
func (c *MesosCloud) InstanceTypeByProviderID(providerID string) (string, error) {
|
|
return "", errors.New("unimplemented")
|
|
}
|
|
|
|
// InstanceType returns the type of the instance with the specified nodeName.
|
|
func (c *MesosCloud) InstanceType(nodeName types.NodeName) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (c *MesosCloud) listNodes() (map[string]*slaveNode, error) {
|
|
//TODO(jdef) use a timeout here? 15s?
|
|
ctx, cancel := context.WithCancel(context.TODO())
|
|
defer cancel()
|
|
|
|
nodes, err := c.client.listSlaves(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
log.V(2).Info("no slaves found, are any running?")
|
|
return nil, nil
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// List lists instances that match 'filter' which is a regular expression
|
|
// which must match the entire instance name (fqdn).
|
|
func (c *MesosCloud) List(filter string) ([]types.NodeName, error) {
|
|
nodes, err := c.listNodes()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
filterRegex, err := regexp.Compile(filter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
names := []types.NodeName{}
|
|
for _, node := range nodes {
|
|
if filterRegex.MatchString(node.hostname) {
|
|
names = append(names, types.NodeName(node.hostname))
|
|
}
|
|
}
|
|
return names, nil
|
|
}
|
|
|
|
// ListWithKubelet list those instance which have no running kubelet, i.e. the
|
|
// Kubernetes executor.
|
|
func (c *MesosCloud) ListWithoutKubelet() ([]string, error) {
|
|
nodes, err := c.listNodes()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
addr := make([]string, 0, len(nodes))
|
|
for _, n := range nodes {
|
|
if !n.kubeletRunning {
|
|
addr = append(addr, n.hostname)
|
|
}
|
|
}
|
|
return addr, nil
|
|
}
|
|
|
|
// NodeAddresses returns the addresses of the instance with the specified nodeName.
|
|
func (c *MesosCloud) NodeAddresses(nodeName types.NodeName) ([]v1.NodeAddress, error) {
|
|
name := mapNodeNameToHostname(nodeName)
|
|
ip, err := ipAddress(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return []v1.NodeAddress{
|
|
{Type: v1.NodeLegacyHostIP, Address: ip.String()},
|
|
{Type: v1.NodeInternalIP, Address: ip.String()},
|
|
{Type: v1.NodeExternalIP, Address: ip.String()},
|
|
}, nil
|
|
}
|
|
|
|
// NodeAddressesByProviderID returns the node addresses of an instances with the specified unique providerID
|
|
// This method will not be called from the node that is requesting this ID. i.e. metadata service
|
|
// and other local methods cannot be used here
|
|
func (c *MesosCloud) NodeAddressesByProviderID(providerID string) ([]v1.NodeAddress, error) {
|
|
return []v1.NodeAddress{}, errors.New("unimplemented")
|
|
}
|