Files
kubevela/pkg/apiserver/event/sync/worker.go
barnettZQG f7d34cbe8a Feat: enhance the application synchronizer (#5299)
* Feat: enhance the application synchronizer

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>

* Fix: e2e test case

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>

* Fix: the unit test case

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
2023-01-11 14:20:47 +08:00

131 lines
4.2 KiB
Go

/*
Copyright 2022 The KubeVela 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 sync
import (
"context"
"sync"
"github.com/fatih/color"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/dynamic"
dynamicInformer "k8s.io/client-go/dynamic/dynamicinformer"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/util/workqueue"
"k8s.io/klog/v2"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
"github.com/oam-dev/kubevela/pkg/apiserver/domain/service"
"github.com/oam-dev/kubevela/pkg/apiserver/infrastructure/datastore"
)
// ApplicationSync sync application from cluster to database
type ApplicationSync struct {
KubeClient client.Client `inject:"kubeClient"`
KubeConfig *rest.Config `inject:"kubeConfig"`
Store datastore.DataStore `inject:"datastore"`
ProjectService service.ProjectService `inject:""`
ApplicationService service.ApplicationService `inject:""`
TargetService service.TargetService `inject:""`
EnvService service.EnvService `inject:""`
Queue workqueue.RateLimitingInterface
}
// Start prepares watchers and run their controllers, then waits for process termination signals
func (a *ApplicationSync) Start(ctx context.Context, errorChan chan error) {
dynamicClient, err := dynamic.NewForConfig(a.KubeConfig)
if err != nil {
errorChan <- err
}
factory := dynamicInformer.NewFilteredDynamicSharedInformerFactory(dynamicClient, 0, v1.NamespaceAll, nil)
informer := factory.ForResource(v1beta1.SchemeGroupVersion.WithResource("applications")).Informer()
getApp := func(obj interface{}) *v1beta1.Application {
if app, ok := obj.(*v1beta1.Application); ok {
return app
}
var app v1beta1.Application
if object, ok := obj.(*unstructured.Unstructured); ok {
if err := runtime.DefaultUnstructuredConverter.FromUnstructured(object.Object, &app); err != nil {
klog.Errorf("decode the application failure %s", err.Error())
return &app
}
}
return &app
}
cu := &CR2UX{
ds: a.Store,
cli: a.KubeClient,
cache: sync.Map{},
projectService: a.ProjectService,
applicationService: a.ApplicationService,
targetService: a.TargetService,
envService: a.EnvService,
}
if err = cu.initCache(ctx); err != nil {
errorChan <- err
}
go func() {
for {
app, down := a.Queue.Get()
if down {
break
}
if err := cu.AddOrUpdate(ctx, app.(*v1beta1.Application)); err != nil {
klog.Errorf("fail to add or update application %s", err.Error())
}
a.Queue.Done(app)
}
}()
addOrUpdateHandler := func(obj interface{}) {
app := getApp(obj)
if app.DeletionTimestamp == nil {
a.Queue.Add(app)
klog.V(4).Infof("watched update/add app event, namespace: %s, name: %s", app.Namespace, app.Name)
}
}
handlers := cache.ResourceEventHandlerFuncs{
AddFunc: func(obj interface{}) {
addOrUpdateHandler(obj)
},
UpdateFunc: func(oldObj, obj interface{}) {
addOrUpdateHandler(obj)
},
DeleteFunc: func(obj interface{}) {
app := getApp(obj)
klog.V(4).Infof("watched delete app event, namespace: %s, name: %s", app.Namespace, app.Name)
a.Queue.Forget(app)
a.Queue.Done(app)
err = cu.DeleteApp(ctx, app)
if err != nil {
klog.Errorf("Application %-30s Deleted Sync to db err %v", color.WhiteString(app.Namespace+"/"+app.Name), err)
}
klog.Infof("delete the application (%s/%s) metadata successfully", app.Namespace, app.Name)
},
}
informer.AddEventHandler(handlers)
klog.Info("app syncing started")
informer.Run(ctx.Done())
}