Skip to content

Releases: Skarlso/crd-bootstrap

v0.9.0

07 Aug 07:23
v0.9.0
84e2213
Compare
Choose a tag to compare

Release v0.9.0

Added ability to apply CRDs into a target cluster using a KubeConfig.

v0.8.0

29 Jul 06:58
v0.8.0
a0f7b7f
Compare
Choose a tag to compare

Release v0.8.0

Added unit tests for the Helm Charts and removed the deprecated Kustomize way of installing the controller
and generating manifests.

v0.7.0

28 May 12:26
Compare
Choose a tag to compare

Release v0.7.0

This release contains a BUNCH of dependency updates for latest versions.

v0.6.0

29 Feb 07:36
ba8403e
Compare
Choose a tag to compare

Release v0.6.0

💥 WARNING
This release is not backwards compatible! It broke how GitHub sources are defined. Instead of gitHub it is now github. Note the uppercase h.

This release adds GitLab as a possible source.

For more information, check out pr #62.

v0.5.3

08 Feb 14:16
e8d4538
Compare
Choose a tag to compare

Release v0.5.3

Add authentication to private helm chart resources.

v0.5.2

03 Feb 19:03
Compare
Choose a tag to compare

Release v0.5.2

Updated dependencies.

v0.5.1

30 Jan 07:22
Compare
Choose a tag to compare

Release v0.5.1

Updated dependencies.

v0.5.0

26 Jan 10:02
Compare
Choose a tag to compare

Release v0.5.0

Add Helm Chart as a resource.

Use either HTTP sources...

apiVersion: delivery.crd-bootstrap/v1alpha1
kind: Bootstrap
metadata:
  name: bootstrap-sample-helm
  namespace: crd-bootstrap-system
spec:
  interval: 10s
  source:
    helm:
      chartReference: https://ibm.github.io/helm101/
      chartName: guestbook
  version:
    semver: 0.2.1

Or an OCI source:

apiVersion: delivery.crd-bootstrap/v1alpha1
kind: Bootstrap
metadata:
  name: bootstrap-sample-helm
  namespace: crd-bootstrap-system
spec:
  interval: 10s
  source:
    helm:
      chartReference: oci://ghcr.io/skarlso/helm/crd-bootstrap
      chartName: crd-bootstrap
  version:
    semver: v0.4.2

Either way, the helm chart needs to have the crds in a folder called crds.

For now, only public sources will work that have no authentication.

v0.4.2

24 Jan 09:27
Compare
Choose a tag to compare

Release v0.4.2

Rename the artifact file.

v0.4.1

24 Jan 08:46
f75acef
Compare
Choose a tag to compare

Release v0.4.1

Improve the helm chart with additional information, a README and some sample CRD content.