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.
2 parents ce6bd39 + 8929899 commit 288b041Copy full SHA for 288b041
pkg/envtest/server.go
@@ -240,7 +240,8 @@ func (te *Environment) Start() (*rest.Config, error) {
240
log.V(1).Info("installing CRDs")
241
te.CRDInstallOptions.CRDs = mergeCRDs(te.CRDInstallOptions.CRDs, te.CRDs)
242
te.CRDInstallOptions.Paths = mergePaths(te.CRDInstallOptions.Paths, te.CRDDirectoryPaths)
243
- _, err := InstallCRDs(te.Config, te.CRDInstallOptions)
+ crds, err := InstallCRDs(te.Config, te.CRDInstallOptions)
244
+ te.CRDs = crds
245
return te.Config, err
246
}
247
0 commit comments