mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Check client if nil before loading resource list (#2562)
Unlike loading resource, current implementation doesn't check if client is nil or not when loading resource list. This commit checks if client is nil or not before loading resource list. Signed-off-by: Sunghoon Kang <hoon@linecorp.com>
This commit is contained in:
parent
08a3087100
commit
e401d57b35
1 changed files with 4 additions and 0 deletions
|
@ -162,6 +162,10 @@ func fetchAPIData(log logr.Logger, entry kyverno.ContextEntry, ctx *PolicyContex
|
|||
}
|
||||
|
||||
func loadResourceList(ctx *PolicyContext, p *APIPath) ([]byte, error) {
|
||||
if ctx.Client == nil {
|
||||
return nil, fmt.Errorf("API client is not available")
|
||||
}
|
||||
|
||||
l, err := ctx.Client.ListResource(p.Version, p.ResourceType, p.Namespace, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Add table
Reference in a new issue