You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
F0619 10:14:33.489771 188693 main.go:140] could not get apiVersion for package k8s.io/apiextensions-apiserver/pkg/apis/apiextensions: cannot infer kubernetes apiVersion of go package k8s.io/apiextensions-apiserver/pkg/apis/apiextensions (basename "apiextensions" doesn't match expected pattern ^v\d+((alpha|beta)\d+)?$ that's used to determine apiVersion)
Does someone has an idea how to fix or work-around it?
The text was updated successfully, but these errors were encountered:
I modified the source code. I commented out the creation of the error, and added a continue.
Now I could build my docs, but it would be nice make this configurable.
for _, pkg := range pkgs {
apiGroup, apiVersion, err := apiVersionForPackage(pkg)
if err != nil {
//return nil, errors.Wrapf(err, "could not get apiVersion for package %s", pkg.Path)
continue
}
I get this error while building my CRD docs.
Does someone has an idea how to fix or work-around it?
The text was updated successfully, but these errors were encountered: