Skip to content

Commit

Permalink
add release docs for v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Skarlso committed Jan 26, 2024
1 parent dbbd478 commit 1b4fd13
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions docs/release_notes/v0.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Release v0.5.0

Add Helm Chart as a resource.

Use either HTTP sources...

```yaml
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:

```yaml
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.

0 comments on commit 1b4fd13

Please sign in to comment.