2014-12-21 02:49:10 +00:00
|
|
|
/*
|
|
|
|
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 master
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider"
|
2014-12-22 19:54:32 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
2014-12-21 02:49:10 +00:00
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewIPCache makes a new ip caching layer, which will get IP addresses from cp,
|
|
|
|
// and use clock for deciding when to re-get an IP address.
|
|
|
|
// Thread-safe.
|
2014-12-22 20:00:44 +00:00
|
|
|
//
|
|
|
|
// TODO: when we switch to go1.4, this class would be a good candidate for something
|
|
|
|
// that could be produced from a template and a type via `go generate`.
|
|
|
|
func NewIPCache(cp cloudprovider.Interface, clock util.Clock, ttl time.Duration) *ipCache {
|
2014-12-21 02:49:10 +00:00
|
|
|
return &ipCache{
|
2015-01-09 22:06:30 +00:00
|
|
|
cache: util.NewTimeCache(
|
|
|
|
clock,
|
|
|
|
ttl,
|
|
|
|
func(host string) util.T {
|
|
|
|
return getInstanceIPFromCloud(cp, host)
|
|
|
|
},
|
|
|
|
),
|
2014-12-21 02:49:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-09 22:06:30 +00:00
|
|
|
type ipCache struct {
|
|
|
|
cache util.TimeCache
|
|
|
|
}
|
|
|
|
|
2014-12-21 02:49:10 +00:00
|
|
|
// GetInstanceIP returns the IP address of host, from the cache
|
|
|
|
// if possible, otherwise it asks the cloud provider.
|
|
|
|
func (c *ipCache) GetInstanceIP(host string) string {
|
2015-01-09 22:06:30 +00:00
|
|
|
return c.cache.Get(host).(string)
|
2014-12-21 02:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getInstanceIPFromCloud(cloud cloudprovider.Interface, host string) string {
|
|
|
|
if cloud == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
instances, ok := cloud.Instances()
|
|
|
|
if instances == nil || !ok {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
addr, err := instances.IPAddress(host)
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error getting instance IP for %q: %v", host, err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return addr.String()
|
|
|
|
}
|