mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix #838 - skip if crd has no schema defined
This commit is contained in:
parent
74387d2ee4
commit
140d638a9b
1 changed files with 5 additions and 0 deletions
|
@ -138,6 +138,11 @@ func (o *Controller) parseCRD(crd unstructured.Unstructured) {
|
|||
}
|
||||
}
|
||||
|
||||
if openV3schema == nil {
|
||||
log.Log.V(3).Info("skip adding schema, CRD has no properties", "name", crdName)
|
||||
return
|
||||
}
|
||||
|
||||
schemaRaw, _ := json.Marshal(openV3schema)
|
||||
if len(schemaRaw) < 1 {
|
||||
log.Log.V(3).Info("could not parse crd schema", "name", crdName)
|
||||
|
|
Loading…
Add table
Reference in a new issue