mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: issue when calling kustomize concurrently (#5465)
* fix: issue when calling kustomize concurrently Co-authored-by: Vyankatesh Kudtarkar <vyankateshkd@gmail.com>
This commit is contained in:
parent
41800c63a0
commit
925f0cf182
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,7 @@ import (
|
|||
kubeinformers "k8s.io/client-go/informers"
|
||||
"k8s.io/client-go/kubernetes"
|
||||
metadatainformers "k8s.io/client-go/metadata/metadatainformer"
|
||||
kyamlopenapi "sigs.k8s.io/kustomize/kyaml/openapi"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -460,6 +461,9 @@ func main() {
|
|||
}
|
||||
// setup cosign
|
||||
setupCosign(logger)
|
||||
// THIS IS AN UGLY FIX
|
||||
// ELSE KYAML IS NOT THREAD SAFE
|
||||
kyamlopenapi.Schema()
|
||||
// check we can run
|
||||
if err := sanityChecks(dClient); err != nil {
|
||||
logger.Error(err, "sanity checks failed")
|
||||
|
|
Loading…
Add table
Reference in a new issue