mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
missing file
This commit is contained in:
parent
9c3b32b903
commit
cd43dba947
1 changed files with 5 additions and 5 deletions
|
@ -30,7 +30,7 @@ type ConfigData struct {
|
||||||
// configuration data
|
// configuration data
|
||||||
filters []k8Resource
|
filters []k8Resource
|
||||||
// hasynced
|
// hasynced
|
||||||
cmListerSycned cache.InformerSynced
|
cmSycned cache.InformerSynced
|
||||||
}
|
}
|
||||||
|
|
||||||
// ToFilter checks if the given resource is set to be filtered in the configuration
|
// ToFilter checks if the given resource is set to be filtered in the configuration
|
||||||
|
@ -57,9 +57,9 @@ func NewConfigData(rclient kubernetes.Interface, cmInformer informers.ConfigMapI
|
||||||
glog.Info("ConfigMap name not defined in env:INIT_CONFIG: loading no default configuration")
|
glog.Info("ConfigMap name not defined in env:INIT_CONFIG: loading no default configuration")
|
||||||
}
|
}
|
||||||
cd := ConfigData{
|
cd := ConfigData{
|
||||||
client: rclient,
|
client: rclient,
|
||||||
cmName: os.Getenv(cmNameEnv),
|
cmName: os.Getenv(cmNameEnv),
|
||||||
cmListerSycned: cmInformer.Informer().HasSynced,
|
cmSycned: cmInformer.Informer().HasSynced,
|
||||||
}
|
}
|
||||||
//TODO: this has been added to backward support command line arguments
|
//TODO: this has been added to backward support command line arguments
|
||||||
// will be removed in future and the configuration will be set only via configmaps
|
// will be removed in future and the configuration will be set only via configmaps
|
||||||
|
@ -79,7 +79,7 @@ func NewConfigData(rclient kubernetes.Interface, cmInformer informers.ConfigMapI
|
||||||
//Run checks syncing
|
//Run checks syncing
|
||||||
func (cd *ConfigData) Run(stopCh <-chan struct{}) {
|
func (cd *ConfigData) Run(stopCh <-chan struct{}) {
|
||||||
// wait for cache to populate first time
|
// wait for cache to populate first time
|
||||||
if !cache.WaitForCacheSync(stopCh, cd.cmListerSycned) {
|
if !cache.WaitForCacheSync(stopCh, cd.cmSycned) {
|
||||||
glog.Error("configuration: failed to sync informer cache")
|
glog.Error("configuration: failed to sync informer cache")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue