mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Fix Keda policy installation issue (#5239)
This commit is contained in:
parent
01b28abf91
commit
a6e866fe1f
1 changed files with 9 additions and 1 deletions
|
@ -11,6 +11,7 @@ import (
|
|||
|
||||
"github.com/distribution/distribution/reference"
|
||||
jsonpatch "github.com/evanphx/json-patch/v5"
|
||||
"github.com/gardener/controller-manager-library/pkg/logger"
|
||||
"github.com/jmespath/go-jmespath"
|
||||
"github.com/jmoiron/jsonq"
|
||||
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
||||
|
@ -140,7 +141,14 @@ func Validate(policy kyvernov1.PolicyInterface, client dclient.Interface, mock b
|
|||
// Get all the cluster type kind supported by cluster
|
||||
res, err := discovery.ServerPreferredResources(client.Discovery().DiscoveryInterface())
|
||||
if err != nil {
|
||||
return warnings, err
|
||||
if discovery.IsGroupDiscoveryFailedError(err) {
|
||||
err := err.(*discovery.ErrGroupDiscoveryFailed)
|
||||
for gv, err := range err.Groups {
|
||||
logger.Error(err, "failed to list api resources", "group", gv)
|
||||
}
|
||||
} else {
|
||||
return warnings, err
|
||||
}
|
||||
}
|
||||
for _, resList := range res {
|
||||
for _, r := range resList.APIResources {
|
||||
|
|
Loading…
Add table
Reference in a new issue