From c119f0d34b676e122ca5ab8a00d17315ba4ec46a Mon Sep 17 00:00:00 2001 From: shivkumar dudhani Date: Fri, 25 Oct 2019 18:49:26 -0500 Subject: [PATCH] split sync cache --- main.go | 9 +++++---- pkg/config/dynamicconfig.go | 18 ++++++++---------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/main.go b/main.go index 637fb13e88..59156b33ad 100644 --- a/main.go +++ b/main.go @@ -96,10 +96,8 @@ func main() { // dyamically load the configuration from configMap // - resource filters // if the configMap is update, the configuration will be updated :D - configData, err := config.NewConfigData(clientConfig, kubeInformer.Core().V1().ConfigMaps(), stopCh) - if err != nil { - glog.Fatalf("error loading dynamic configuration: %v", err) - } + configData := config.NewConfigData(kubeClient, kubeInformer.Core().V1().ConfigMaps()) + // EVENT GENERATOR // - generate event with retry mechanism egen := event.NewEventGenerator(client, pInformer.Kyverno().V1alpha1().ClusterPolicies()) @@ -155,6 +153,9 @@ func main() { // Start the components pInformer.Start(stopCh) kubeInformer.Start(stopCh) + if err := configData.Run(kubeInformer.Core().V1().ConfigMaps(), stopCh); err != nil { + glog.Fatalf("Unable loading dynamic configuration: %v\n", err) + } go pc.Run(1, stopCh) go pvc.Run(1, stopCh) go egen.Run(1, stopCh) diff --git a/pkg/config/dynamicconfig.go b/pkg/config/dynamicconfig.go index 6c09da9880..364e9ff399 100644 --- a/pkg/config/dynamicconfig.go +++ b/pkg/config/dynamicconfig.go @@ -13,7 +13,6 @@ import ( v1 "k8s.io/api/core/v1" informers "k8s.io/client-go/informers/core/v1" "k8s.io/client-go/kubernetes" - "k8s.io/client-go/rest" "k8s.io/client-go/tools/cache" ) @@ -50,18 +49,13 @@ type Interface interface { } // NewConfigData ... -func NewConfigData(restconfig *rest.Config, cmInformer informers.ConfigMapInformer, stopCh <-chan struct{}) (*ConfigData, error) { - // get the client - kclient, err := kubernetes.NewForConfig(restconfig) - if err != nil { - return nil, err - } +func NewConfigData(rclient kubernetes.Interface, cmInformer informers.ConfigMapInformer) *ConfigData { // environment var is read at start only if cmNameEnv == "" { glog.Info("ConfigMap name not defined in env:INIT_CONFIG: loading no default configuration") } cd := ConfigData{ - client: kclient, + client: rclient, cmName: os.Getenv(cmNameEnv), } @@ -70,11 +64,15 @@ func NewConfigData(restconfig *rest.Config, cmInformer informers.ConfigMapInform UpdateFunc: cd.updateCM, DeleteFunc: cd.deleteCM, }) + return &cd +} + +func (cd *ConfigData) Run(cmInformer informers.ConfigMapInformer, stopCh <-chan struct{}) error { // wait for cache to populate first time if !cache.WaitForCacheSync(stopCh, cmInformer.Informer().HasSynced) { - return nil, fmt.Errorf("Configuration: Failed to sync informer cache") + return fmt.Errorf("Configuration: Failed to sync informer cache") } - return &cd, nil + return nil } func (cd *ConfigData) addCM(obj interface{}) {