2014-06-06 23:40:48 +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 registry
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"math/rand"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2014-06-12 20:17:34 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
2014-06-06 23:40:48 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
|
|
|
"github.com/coreos/go-etcd/etcd"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ReplicationManager is responsible for synchronizing ReplicationController objects stored in etcd
|
2014-06-09 05:38:45 +00:00
|
|
|
// with actual running pods.
|
2014-06-06 23:40:48 +00:00
|
|
|
// TODO: Remove the etcd dependency and re-factor in terms of a generic watch interface
|
|
|
|
type ReplicationManager struct {
|
2014-06-09 05:38:45 +00:00
|
|
|
etcdClient *etcd.Client
|
|
|
|
kubeClient client.ClientInterface
|
|
|
|
podControl PodControlInterface
|
|
|
|
updateLock sync.Mutex
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-06-09 05:38:45 +00:00
|
|
|
// An interface that knows how to add or delete pods
|
2014-06-06 23:40:48 +00:00
|
|
|
// created as an interface to allow testing.
|
2014-06-09 05:38:45 +00:00
|
|
|
type PodControlInterface interface {
|
2014-06-12 20:17:34 +00:00
|
|
|
createReplica(controllerSpec api.ReplicationController)
|
2014-06-09 05:38:45 +00:00
|
|
|
deletePod(podID string) error
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-06-09 05:38:45 +00:00
|
|
|
type RealPodControl struct {
|
2014-06-06 23:40:48 +00:00
|
|
|
kubeClient client.ClientInterface
|
|
|
|
}
|
|
|
|
|
2014-06-12 20:17:34 +00:00
|
|
|
func (r RealPodControl) createReplica(controllerSpec api.ReplicationController) {
|
2014-06-09 04:39:57 +00:00
|
|
|
labels := controllerSpec.DesiredState.PodTemplate.Labels
|
2014-06-06 23:40:48 +00:00
|
|
|
if labels != nil {
|
|
|
|
labels["replicationController"] = controllerSpec.ID
|
|
|
|
}
|
2014-06-12 20:17:34 +00:00
|
|
|
pod := api.Pod{
|
|
|
|
JSONBase: api.JSONBase{
|
2014-06-06 23:40:48 +00:00
|
|
|
ID: fmt.Sprintf("%x", rand.Int()),
|
|
|
|
},
|
2014-06-09 04:39:57 +00:00
|
|
|
DesiredState: controllerSpec.DesiredState.PodTemplate.DesiredState,
|
|
|
|
Labels: controllerSpec.DesiredState.PodTemplate.Labels,
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
2014-06-09 05:38:45 +00:00
|
|
|
_, err := r.kubeClient.CreatePod(pod)
|
2014-06-06 23:40:48 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("%#v\n", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-09 05:38:45 +00:00
|
|
|
func (r RealPodControl) deletePod(podID string) error {
|
|
|
|
return r.kubeClient.DeletePod(podID)
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func MakeReplicationManager(etcdClient *etcd.Client, kubeClient client.ClientInterface) *ReplicationManager {
|
|
|
|
return &ReplicationManager{
|
|
|
|
kubeClient: kubeClient,
|
|
|
|
etcdClient: etcdClient,
|
2014-06-09 05:38:45 +00:00
|
|
|
podControl: RealPodControl{
|
2014-06-06 23:40:48 +00:00
|
|
|
kubeClient: kubeClient,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rm *ReplicationManager) WatchControllers() {
|
|
|
|
watchChannel := make(chan *etcd.Response)
|
|
|
|
go util.Forever(func() { rm.etcdClient.Watch("/registry/controllers", 0, true, watchChannel, nil) }, 0)
|
|
|
|
for {
|
|
|
|
watchResponse := <-watchChannel
|
|
|
|
if watchResponse == nil {
|
|
|
|
time.Sleep(time.Second * 10)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
log.Printf("Got watch: %#v", watchResponse)
|
|
|
|
controller, err := rm.handleWatchResponse(watchResponse)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error handling data: %#v, %#v", err, watchResponse)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
rm.syncReplicationController(*controller)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-12 20:17:34 +00:00
|
|
|
func (rm *ReplicationManager) handleWatchResponse(response *etcd.Response) (*api.ReplicationController, error) {
|
2014-06-06 23:40:48 +00:00
|
|
|
if response.Action == "set" {
|
|
|
|
if response.Node != nil {
|
2014-06-12 20:17:34 +00:00
|
|
|
var controllerSpec api.ReplicationController
|
2014-06-06 23:40:48 +00:00
|
|
|
err := json.Unmarshal([]byte(response.Node.Value), &controllerSpec)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &controllerSpec, nil
|
|
|
|
} else {
|
2014-06-13 22:45:19 +00:00
|
|
|
return nil, fmt.Errorf("response node is null %#v", response)
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2014-06-12 20:17:34 +00:00
|
|
|
func (rm *ReplicationManager) filterActivePods(pods []api.Pod) []api.Pod {
|
|
|
|
var result []api.Pod
|
2014-06-09 05:38:45 +00:00
|
|
|
for _, value := range pods {
|
2014-06-06 23:40:48 +00:00
|
|
|
if strings.Index(value.CurrentState.Status, "Exit") == -1 {
|
|
|
|
result = append(result, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2014-06-12 20:17:34 +00:00
|
|
|
func (rm *ReplicationManager) syncReplicationController(controllerSpec api.ReplicationController) error {
|
2014-06-06 23:40:48 +00:00
|
|
|
rm.updateLock.Lock()
|
2014-06-09 05:38:45 +00:00
|
|
|
podList, err := rm.kubeClient.ListPods(controllerSpec.DesiredState.ReplicasInSet)
|
2014-06-06 23:40:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-06-09 05:38:45 +00:00
|
|
|
filteredList := rm.filterActivePods(podList.Items)
|
2014-06-06 23:40:48 +00:00
|
|
|
diff := len(filteredList) - controllerSpec.DesiredState.Replicas
|
|
|
|
log.Printf("%#v", filteredList)
|
|
|
|
if diff < 0 {
|
|
|
|
diff *= -1
|
|
|
|
log.Printf("Too few replicas, creating %d\n", diff)
|
|
|
|
for i := 0; i < diff; i++ {
|
2014-06-09 05:38:45 +00:00
|
|
|
rm.podControl.createReplica(controllerSpec)
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
} else if diff > 0 {
|
|
|
|
log.Print("Too many replicas, deleting")
|
|
|
|
for i := 0; i < diff; i++ {
|
2014-06-09 05:38:45 +00:00
|
|
|
rm.podControl.deletePod(filteredList[i].ID)
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rm.updateLock.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rm *ReplicationManager) Synchronize() {
|
|
|
|
for {
|
|
|
|
response, err := rm.etcdClient.Get("/registry/controllers", false, false)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Synchronization error %#v", err)
|
|
|
|
}
|
|
|
|
// TODO(bburns): There is a race here, if we get a version of the controllers, and then it is
|
|
|
|
// updated, its possible that the watch will pick up the change first, and then we will execute
|
|
|
|
// using the old version of the controller.
|
|
|
|
// Probably the correct thing to do is to use the version number in etcd to detect when
|
|
|
|
// we are stale.
|
|
|
|
// Punting on this for now, but this could lead to some nasty bugs, so we should really fix it
|
|
|
|
// sooner rather than later.
|
|
|
|
if response != nil && response.Node != nil && response.Node.Nodes != nil {
|
|
|
|
for _, value := range response.Node.Nodes {
|
2014-06-12 20:17:34 +00:00
|
|
|
var controllerSpec api.ReplicationController
|
2014-06-06 23:40:48 +00:00
|
|
|
err := json.Unmarshal([]byte(value.Value), &controllerSpec)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Unexpected error: %#v", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
log.Printf("Synchronizing %s\n", controllerSpec.ID)
|
|
|
|
err = rm.syncReplicationController(controllerSpec)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error synchronizing: %#v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
}
|
|
|
|
}
|