mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* added configmap data substitution for foreground mutate and validate * added configmap data substitution for foreground mutate and validate fmt * added configmap lookup for background * added comments to resource cache * added configmap data lookup in preConditions * added parse strings in In operator and configmap lookup docs * added configmap lookup docs * modified configmap lookup docs
9 lines
158 B
Go
9 lines
158 B
Go
package resourcecache
|
|
|
|
import (
|
|
"k8s.io/client-go/tools/cache"
|
|
)
|
|
|
|
func startWatching(stopCh <-chan struct{}, s cache.SharedIndexInformer) {
|
|
s.Run(stopCh)
|
|
}
|