mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* structuring log Signed-off-by: Kamaal <kamaal@macs-MacBook-Air.local> * Update controller.go Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> * Update main.go Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> * Update run.go Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> * Update config.go Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> * Update pkg/webhooks/resource/mutation/mutation.go Co-authored-by: shuting <shuting@nirmata.com> Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> * Update pkg/webhooks/resource/mutation/mutation.go Co-authored-by: shuting <shuting@nirmata.com> Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> Signed-off-by: Kamaal <kamaal@macs-MacBook-Air.local> --------- Signed-off-by: Kamaal <kamaal@macs-MacBook-Air.local> Signed-off-by: Mohd Kamaal <102820439+Mohdcode@users.noreply.github.com> Co-authored-by: Kamaal <kamaal@macs-MacBook-Air.local> Co-authored-by: shuting <shuting@nirmata.com>
20 lines
816 B
Go
20 lines
816 B
Go
package internal
|
|
|
|
import (
|
|
"github.com/go-logr/logr"
|
|
"github.com/kyverno/kyverno/pkg/imageverifycache"
|
|
)
|
|
|
|
func setupImageVerifyCache(logger logr.Logger) imageverifycache.Client {
|
|
logger = logger.WithName("image-verify-cache").WithValues("enabled", imageVerifyCacheEnabled, "maxsize", imageVerifyCacheMaxSize, "ttl", imageVerifyCacheTTLDuration)
|
|
logger.V(2).Info("setup image verify cache...")
|
|
opts := []imageverifycache.Option{
|
|
imageverifycache.WithLogger(logger),
|
|
imageverifycache.WithCacheEnableFlag(imageVerifyCacheEnabled),
|
|
imageverifycache.WithMaxSize(imageVerifyCacheMaxSize),
|
|
imageverifycache.WithTTLDuration(imageVerifyCacheTTLDuration),
|
|
}
|
|
imageVerifyCache, err := imageverifycache.New(opts...)
|
|
checkError(logger, err, "failed to create image verify cache client")
|
|
return imageVerifyCache
|
|
}
|