2018-01-09 18:57:14 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This file contains adapters that convert between RC and RS,
|
|
|
|
// as if ReplicationController were an older API version of ReplicaSet.
|
|
|
|
// It allows ReplicaSetController to directly replace the old ReplicationManager,
|
|
|
|
// which was previously a manually-maintained copy-paste of RSC.
|
|
|
|
|
|
|
|
package replication
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
apps "k8s.io/api/apps/v1"
|
2018-01-09 18:57:14 +00:00
|
|
|
"k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
"k8s.io/apimachinery/pkg/types"
|
|
|
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
|
|
|
"k8s.io/apimachinery/pkg/watch"
|
|
|
|
coreinformers "k8s.io/client-go/informers/core/v1"
|
|
|
|
clientset "k8s.io/client-go/kubernetes"
|
2018-07-18 14:47:22 +00:00
|
|
|
appsv1client "k8s.io/client-go/kubernetes/typed/apps/v1"
|
2018-01-09 18:57:14 +00:00
|
|
|
v1client "k8s.io/client-go/kubernetes/typed/core/v1"
|
2018-07-18 14:47:22 +00:00
|
|
|
appslisters "k8s.io/client-go/listers/apps/v1"
|
2018-01-09 18:57:14 +00:00
|
|
|
v1listers "k8s.io/client-go/listers/core/v1"
|
|
|
|
"k8s.io/client-go/tools/cache"
|
2018-11-26 18:23:56 +00:00
|
|
|
appsinternal "k8s.io/kubernetes/pkg/apis/apps"
|
2018-07-18 14:47:22 +00:00
|
|
|
appsconversion "k8s.io/kubernetes/pkg/apis/apps/v1"
|
2018-01-09 18:57:14 +00:00
|
|
|
apiv1 "k8s.io/kubernetes/pkg/apis/core/v1"
|
|
|
|
"k8s.io/kubernetes/pkg/controller"
|
|
|
|
)
|
|
|
|
|
|
|
|
// informerAdapter implements ReplicaSetInformer by wrapping ReplicationControllerInformer
|
|
|
|
// and converting objects.
|
|
|
|
type informerAdapter struct {
|
|
|
|
rcInformer coreinformers.ReplicationControllerInformer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i informerAdapter) Informer() cache.SharedIndexInformer {
|
|
|
|
return conversionInformer{i.rcInformer.Informer()}
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (i informerAdapter) Lister() appslisters.ReplicaSetLister {
|
2018-01-09 18:57:14 +00:00
|
|
|
return conversionLister{i.rcInformer.Lister()}
|
|
|
|
}
|
|
|
|
|
|
|
|
type conversionInformer struct {
|
|
|
|
cache.SharedIndexInformer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i conversionInformer) AddEventHandler(handler cache.ResourceEventHandler) {
|
|
|
|
i.SharedIndexInformer.AddEventHandler(conversionEventHandler{handler})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i conversionInformer) AddEventHandlerWithResyncPeriod(handler cache.ResourceEventHandler, resyncPeriod time.Duration) {
|
|
|
|
i.SharedIndexInformer.AddEventHandlerWithResyncPeriod(conversionEventHandler{handler}, resyncPeriod)
|
|
|
|
}
|
|
|
|
|
|
|
|
type conversionLister struct {
|
|
|
|
rcLister v1listers.ReplicationControllerLister
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (l conversionLister) List(selector labels.Selector) ([]*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rcList, err := l.rcLister.List(selector)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertSlice(rcList)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (l conversionLister) ReplicaSets(namespace string) appslisters.ReplicaSetNamespaceLister {
|
2018-01-09 18:57:14 +00:00
|
|
|
return conversionNamespaceLister{l.rcLister.ReplicationControllers(namespace)}
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (l conversionLister) GetPodReplicaSets(pod *v1.Pod) ([]*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rcList, err := l.rcLister.GetPodControllers(pod)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertSlice(rcList)
|
|
|
|
}
|
|
|
|
|
|
|
|
type conversionNamespaceLister struct {
|
|
|
|
rcLister v1listers.ReplicationControllerNamespaceLister
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (l conversionNamespaceLister) List(selector labels.Selector) ([]*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rcList, err := l.rcLister.List(selector)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertSlice(rcList)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (l conversionNamespaceLister) Get(name string) (*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rc, err := l.rcLister.Get(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertRCtoRS(rc, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
type conversionEventHandler struct {
|
|
|
|
handler cache.ResourceEventHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h conversionEventHandler) OnAdd(obj interface{}) {
|
|
|
|
rs, err := convertRCtoRS(obj.(*v1.ReplicationController), nil)
|
|
|
|
if err != nil {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnAdd event: can't convert object %#v to RS: %v", obj, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
h.handler.OnAdd(rs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h conversionEventHandler) OnUpdate(oldObj, newObj interface{}) {
|
|
|
|
oldRS, err := convertRCtoRS(oldObj.(*v1.ReplicationController), nil)
|
|
|
|
if err != nil {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnUpdate event: can't convert old object %#v to RS: %v", oldObj, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
newRS, err := convertRCtoRS(newObj.(*v1.ReplicationController), nil)
|
|
|
|
if err != nil {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnUpdate event: can't convert new object %#v to RS: %v", newObj, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
h.handler.OnUpdate(oldRS, newRS)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h conversionEventHandler) OnDelete(obj interface{}) {
|
|
|
|
rc, ok := obj.(*v1.ReplicationController)
|
|
|
|
if !ok {
|
|
|
|
// Convert the Obj inside DeletedFinalStateUnknown.
|
|
|
|
tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
|
|
|
|
if !ok {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnDelete event: couldn't get object from tombstone %+v", obj))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rc, ok = tombstone.Obj.(*v1.ReplicationController)
|
|
|
|
if !ok {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnDelete event: tombstone contained object that is not a RC %#v", obj))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rs, err := convertRCtoRS(rc, nil)
|
|
|
|
if err != nil {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnDelete event: can't convert object %#v to RS: %v", obj, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
h.handler.OnDelete(cache.DeletedFinalStateUnknown{Key: tombstone.Key, Obj: rs})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's a regular RC object.
|
|
|
|
rs, err := convertRCtoRS(rc, nil)
|
|
|
|
if err != nil {
|
|
|
|
utilruntime.HandleError(fmt.Errorf("dropping RC OnDelete event: can't convert object %#v to RS: %v", obj, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
h.handler.OnDelete(rs)
|
|
|
|
}
|
|
|
|
|
|
|
|
type clientsetAdapter struct {
|
|
|
|
clientset.Interface
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c clientsetAdapter) AppsV1() appsv1client.AppsV1Interface {
|
2018-01-09 18:57:14 +00:00
|
|
|
return conversionAppsV1Client{c.Interface, c.Interface.AppsV1()}
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c clientsetAdapter) Apps() appsv1client.AppsV1Interface {
|
2018-01-09 18:57:14 +00:00
|
|
|
return conversionAppsV1Client{c.Interface, c.Interface.AppsV1()}
|
|
|
|
}
|
|
|
|
|
|
|
|
type conversionAppsV1Client struct {
|
|
|
|
clientset clientset.Interface
|
2018-07-18 14:47:22 +00:00
|
|
|
appsv1client.AppsV1Interface
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionAppsV1Client) ReplicaSets(namespace string) appsv1client.ReplicaSetInterface {
|
2018-01-09 18:57:14 +00:00
|
|
|
return conversionClient{c.clientset.CoreV1().ReplicationControllers(namespace)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type conversionClient struct {
|
|
|
|
v1client.ReplicationControllerInterface
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionClient) Create(rs *apps.ReplicaSet) (*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
return convertCall(c.ReplicationControllerInterface.Create, rs)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionClient) Update(rs *apps.ReplicaSet) (*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
return convertCall(c.ReplicationControllerInterface.Update, rs)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionClient) UpdateStatus(rs *apps.ReplicaSet) (*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
return convertCall(c.ReplicationControllerInterface.UpdateStatus, rs)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionClient) Get(name string, options metav1.GetOptions) (*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rc, err := c.ReplicationControllerInterface.Get(name, options)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertRCtoRS(rc, nil)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionClient) List(opts metav1.ListOptions) (*apps.ReplicaSetList, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rcList, err := c.ReplicationControllerInterface.List(opts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertList(rcList)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c conversionClient) Watch(opts metav1.ListOptions) (watch.Interface, error) {
|
|
|
|
// This is not used by RSC because we wrap the shared informer instead.
|
|
|
|
return nil, errors.New("Watch() is not implemented for conversionClient")
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func (c conversionClient) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *apps.ReplicaSet, err error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
// This is not used by RSC.
|
|
|
|
return nil, errors.New("Patch() is not implemented for conversionClient")
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func convertSlice(rcList []*v1.ReplicationController) ([]*apps.ReplicaSet, error) {
|
|
|
|
rsList := make([]*apps.ReplicaSet, 0, len(rcList))
|
2018-01-09 18:57:14 +00:00
|
|
|
for _, rc := range rcList {
|
|
|
|
rs, err := convertRCtoRS(rc, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rsList = append(rsList, rs)
|
|
|
|
}
|
|
|
|
return rsList, nil
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func convertList(rcList *v1.ReplicationControllerList) (*apps.ReplicaSetList, error) {
|
|
|
|
rsList := &apps.ReplicaSetList{Items: make([]apps.ReplicaSet, len(rcList.Items))}
|
2018-01-09 18:57:14 +00:00
|
|
|
for i := range rcList.Items {
|
|
|
|
rc := &rcList.Items[i]
|
|
|
|
_, err := convertRCtoRS(rc, &rsList.Items[i])
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rsList, nil
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func convertCall(fn func(*v1.ReplicationController) (*v1.ReplicationController, error), rs *apps.ReplicaSet) (*apps.ReplicaSet, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
rc, err := convertRStoRC(rs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result, err := fn(rc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return convertRCtoRS(result, nil)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func convertRCtoRS(rc *v1.ReplicationController, out *apps.ReplicaSet) (*apps.ReplicaSet, error) {
|
2018-11-26 18:23:56 +00:00
|
|
|
var rsInternal appsinternal.ReplicaSet
|
|
|
|
if err := apiv1.Convert_v1_ReplicationController_To_apps_ReplicaSet(rc, &rsInternal, nil); err != nil {
|
2018-01-09 18:57:14 +00:00
|
|
|
return nil, fmt.Errorf("can't convert ReplicationController %v/%v to ReplicaSet: %v", rc.Namespace, rc.Name, err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
2018-07-18 14:47:22 +00:00
|
|
|
out = new(apps.ReplicaSet)
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
2018-11-26 18:23:56 +00:00
|
|
|
if err := appsconversion.Convert_apps_ReplicaSet_To_v1_ReplicaSet(&rsInternal, out, nil); err != nil {
|
|
|
|
return nil, fmt.Errorf("can't convert ReplicaSet (converted from ReplicationController %v/%v) from internal to apps/v1: %v", rc.Namespace, rc.Name, err)
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
func convertRStoRC(rs *apps.ReplicaSet) (*v1.ReplicationController, error) {
|
2018-11-26 18:23:56 +00:00
|
|
|
var rsInternal appsinternal.ReplicaSet
|
|
|
|
if err := appsconversion.Convert_v1_ReplicaSet_To_apps_ReplicaSet(rs, &rsInternal, nil); err != nil {
|
|
|
|
return nil, fmt.Errorf("can't convert ReplicaSet (converting to ReplicationController %v/%v) from apps/v1 to internal: %v", rs.Namespace, rs.Name, err)
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
var rc v1.ReplicationController
|
2018-11-26 18:23:56 +00:00
|
|
|
if err := apiv1.Convert_apps_ReplicaSet_To_v1_ReplicationController(&rsInternal, &rc, nil); err != nil {
|
2018-01-09 18:57:14 +00:00
|
|
|
return nil, fmt.Errorf("can't convert ReplicaSet to ReplicationController %v/%v: %v", rs.Namespace, rs.Name, err)
|
|
|
|
}
|
|
|
|
return &rc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type podControlAdapter struct {
|
|
|
|
controller.PodControlInterface
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pc podControlAdapter) CreatePods(namespace string, template *v1.PodTemplateSpec, object runtime.Object) error {
|
|
|
|
// This is not used by RSC.
|
|
|
|
return errors.New("CreatePods() is not implemented for podControlAdapter")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pc podControlAdapter) CreatePodsOnNode(nodeName, namespace string, template *v1.PodTemplateSpec, object runtime.Object, controllerRef *metav1.OwnerReference) error {
|
|
|
|
// This is not used by RSC.
|
|
|
|
return errors.New("CreatePodsOnNode() is not implemented for podControlAdapter")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pc podControlAdapter) CreatePodsWithControllerRef(namespace string, template *v1.PodTemplateSpec, object runtime.Object, controllerRef *metav1.OwnerReference) error {
|
2018-07-18 14:47:22 +00:00
|
|
|
rc, err := convertRStoRC(object.(*apps.ReplicaSet))
|
2018-01-09 18:57:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return pc.PodControlInterface.CreatePodsWithControllerRef(namespace, template, rc, controllerRef)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pc podControlAdapter) DeletePod(namespace string, podID string, object runtime.Object) error {
|
2018-07-18 14:47:22 +00:00
|
|
|
rc, err := convertRStoRC(object.(*apps.ReplicaSet))
|
2018-01-09 18:57:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return pc.PodControlInterface.DeletePod(namespace, podID, rc)
|
|
|
|
}
|