Release v0.7.0

Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
Hidde Beydals 2021-02-12 12:34:20 +01:00
parent 845d3a807b
commit 8e943d8ac6
6 changed files with 35 additions and 7 deletions

View File

@ -1,5 +1,32 @@
# Changelog
## 0.7.0
**Release date:** 2021-02-12
This is the seventh MINOR prerelease.
Support has been added for Kustomize based post renderer, making it possible
to define images, strategic merge and JSON 6902 patches within the
`HelmRelease`.
`pprof` endpoints have been enabled on the metrics server, making it easier to
collect runtime information to for example debug performance issues.
Features:
* Support for Kustomize based PostRenderer
[#202](https://github.com/fluxcd/helm-controller/pull/202)
[#205](https://github.com/fluxcd/helm-controller/pull/205)
[#206](https://github.com/fluxcd/helm-controller/pull/206)
Improvements:
* Update dependencies
[#207](https://github.com/fluxcd/helm-controller/pull/207)
* Enable pprof endpoints on metrics server
[#209](https://github.com/fluxcd/helm-controller/pull/209)
* Update Alpine to v3.13
[#210](https://github.com/fluxcd/helm-controller/pull/210)
## 0.6.1
**Release date:** 2021-01-25

View File

@ -5,6 +5,6 @@ resources:
- ../crd
- ../rbac
- ../manager
- github.com/fluxcd/source-controller/config//crd?ref=v0.7.4
- github.com/fluxcd/source-controller/config//manager?ref=v0.7.4
- github.com/fluxcd/source-controller/config//crd?ref=v0.8.0
- github.com/fluxcd/source-controller/config//manager?ref=v0.8.0
- namespace.yaml

View File

@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/helm-controller
newName: fluxcd/helm-controller
newTag: v0.6.1
newTag: v0.7.0

View File

@ -17,6 +17,7 @@ Kubernetes manifests.
* [`HelmRelease` dependencies](helmreleases.md#helmrelease-dependencies)
* [Configuring Helm test actions](helmreleases.md#configuring-helm-test-actions)
* [Configuring failure remediation](helmreleases.md#configuring-failure-remediation)
+ [Post Renders](helmreleases.md#post-renderers)
+ [Status](helmreleases.md#status)
## Implementation

4
go.mod
View File

@ -5,11 +5,11 @@ go 1.15
replace github.com/fluxcd/helm-controller/api => ./api
require (
github.com/fluxcd/helm-controller/api v0.6.1
github.com/fluxcd/helm-controller/api v0.7.0
github.com/fluxcd/pkg/apis/kustomize v0.0.1
github.com/fluxcd/pkg/apis/meta v0.8.0
github.com/fluxcd/pkg/runtime v0.8.1
github.com/fluxcd/source-controller/api v0.7.4
github.com/fluxcd/source-controller/api v0.8.0
github.com/go-logr/logr v0.3.0
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2

4
go.sum
View File

@ -250,8 +250,8 @@ github.com/fluxcd/pkg/apis/meta v0.8.0/go.mod h1:yHuY8kyGHYz22I0jQzqMMGCcHViuzC/
github.com/fluxcd/pkg/runtime v0.6.2/go.mod h1:RuqYOYCvBJwo4rg83d28WOt2vfSaemuZCVpUagAjWQc=
github.com/fluxcd/pkg/runtime v0.8.1 h1:8UxNz7GeI/HC3U5tpNCfrjRx2V7UjUegQOwCsd+EWxk=
github.com/fluxcd/pkg/runtime v0.8.1/go.mod h1:tQwEN+RESjJmtwSSv7I+6bkNM9raIXpGsCjruaIVX6A=
github.com/fluxcd/source-controller/api v0.7.4 h1:Hy29SUyanKNHbb4AQZo7PqzmTx4y8TfkeO0GqBcb5PE=
github.com/fluxcd/source-controller/api v0.7.4/go.mod h1:u2sdc/QDm0tzXHL7mZVj928hc3MMU+4mKCuAQg+94Bk=
github.com/fluxcd/source-controller/api v0.8.0 h1:jOgeOwCLXzmjinRiDT7e/IuSB7WNZMgrUwMLJm09K/o=
github.com/fluxcd/source-controller/api v0.8.0/go.mod h1:u2sdc/QDm0tzXHL7mZVj928hc3MMU+4mKCuAQg+94Bk=
github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4=
github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20=