We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58324d7 commit f348e9eCopy full SHA for f348e9e
pkg/crd/known_types.go
@@ -68,6 +68,13 @@ var KnownPackages = map[string]PackageOverride{
68
p.AddPackage(pkg) // get the rest of the types
69
},
70
71
+ "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured": func(p *Parser, pkg *loader.Package) {
72
+ p.Schemata[TypeIdent{Name: "Unstructured", Package: pkg}] = apiext.JSONSchemaProps{
73
+ Type: "object",
74
+ }
75
+ p.AddPackage(pkg) // get the rest of the types
76
+ },
77
+
78
"k8s.io/apimachinery/pkg/util/intstr": func(p *Parser, pkg *loader.Package) {
79
p.Schemata[TypeIdent{Name: "IntOrString", Package: pkg}] = apiext.JSONSchemaProps{
80
AnyOf: []apiext.JSONSchemaProps{
0 commit comments