1
0
Fork 0
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:
Shuting Zhao 2020-05-18 21:02:21 -07:00
parent 74387d2ee4
commit 140d638a9b

View file

@ -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)