Skip to content

v0.9.0

Compare
Choose a tag to compare
@ecordell ecordell released this 17 Aug 18:59
· 7 commits to main since this release
a8e0815

What's Changed

  • Remove dependency on controller-runtime by @ecordell in #40
  • Bumps to kube 1.28 dependencies

APIs

The CRD function in bootstrap has been deprecated (but not removed) and replaced with CRDs.

The only difference in signature is the initial context.Context argument:

Before:

func CRD(restConfig *rest.Config, crdFS fs.ReadDirFS, dir string) error {

After:

func CRDs(ctx context.Context, restConfig *rest.Config, crdFS fs.ReadDirFS, dir string) error

We recommend updating to the new function, but the old one continues to work.

Full Changelog: v0.8.0...v0.9.0