Skip to content

Releases: Skarlso/crd-bootstrap

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
68c3544
Compare
Choose a tag to compare

Release v0.5.2

Updated dependencies.

v0.5.1

30 Jan 07:22
3909117
Compare
Choose a tag to compare

Release v0.5.1

Updated dependencies.

v0.5.0

26 Jan 10:02
1b4fd13
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
03a9ec9
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.

v0.4.0

22 Jan 21:39
e48f4bf
Compare
Choose a tag to compare

Release v0.4.0

This release adds a new way of installing crd-bootstrap controller.

The helm-chart under ./crd-bootstrap is now the preferred way.

The manifests under ./config folder will eventually be deprecated and
no then removed.

v0.3.11

22 Jan 21:16
f7b53e7
Compare
Choose a tag to compare

Release v0.3.11

Add proper hand-crafted helm charts to the project.

v0.3.10

22 Jan 11:59
c4c9d5c
Compare
Choose a tag to compare

Release v0.3.10

Add {{ Release.Namespace }} to the templates to use the proper release namespace.