mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-17 06:46:47 +00:00
* Fix: memory leak of the apiserver Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: listen to the context done event Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: remove the shutdown code Signed-off-by: barnettZQG <barnett.zqg@gmail.com> Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
131 lines
4.2 KiB
Go
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"
|
|
"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"
|
|
"github.com/oam-dev/kubevela/pkg/apiserver/utils/log"
|
|
)
|
|
|
|
// 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 {
|
|
log.Logger.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 {
|
|
log.Logger.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)
|
|
log.Logger.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)
|
|
log.Logger.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 {
|
|
log.Logger.Errorf("Application %-30s Deleted Sync to db err %v", color.WhiteString(app.Namespace+"/"+app.Name), err)
|
|
}
|
|
log.Logger.Infof("delete the application (%s/%s) metadata successfully", app.Namespace, app.Name)
|
|
},
|
|
}
|
|
informer.AddEventHandler(handlers)
|
|
log.Logger.Info("app syncing started")
|
|
informer.Run(ctx.Done())
|
|
}
|