Release v0.2.0
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
parent
9cd9ea5dbe
commit
866aa89365
|
@ -2,6 +2,12 @@
|
|||
|
||||
All notable changes to this project are documented in this file.
|
||||
|
||||
## 0.2.0 (2020-10-29)
|
||||
|
||||
This is the second MINOR prerelease, it comes with breaking changes:
|
||||
* the histogram metric `gotk_reconcile_duration` was renamed to `gotk_reconcile_duration_seconds`
|
||||
* the annotation `fluxcd.io/reconcileAt` was renamed to `reconcile.fluxcd.io/requestedAt`
|
||||
|
||||
## 0.1.2 (2020-10-19)
|
||||
|
||||
This prerelease adds support for HTTP/S proxies when sending alerts.
|
||||
|
|
2
Makefile
2
Makefile
|
@ -90,7 +90,7 @@ docker-push:
|
|||
|
||||
# Set the docker image in-cluster
|
||||
docker-deploy:
|
||||
kubectl -n gotk-system set image deployment/notification-controller manager=${IMG}
|
||||
kubectl -n flux-system set image deployment/notification-controller manager=${IMG}
|
||||
|
||||
# Find or download controller-gen
|
||||
controller-gen:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
[](https://github.com/fluxcd/notification-controller/blob/main/LICENSE)
|
||||
[](https://github.com/fluxcd/notification-controller/releases)
|
||||
|
||||
Event forwarder and notification dispatcher for the GitOps Toolkit controllers.
|
||||
Event forwarder and notification dispatcher for the [GitOps Toolkit](https://toolkit.fluxcd.io) controllers.
|
||||
The notification-controller is an implementation of the [notification.toolkit.fluxcd.io](docs/spec/v1beta1/README.md)
|
||||
API based on the specifications described in the [RFC](docs/spec/README.md).
|
||||
|
||||
|
|
|
@ -6,4 +6,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/notification-controller
|
||||
newName: fluxcd/notification-controller
|
||||
newTag: v0.1.2
|
||||
newTag: v0.2.0
|
||||
|
|
4
go.mod
4
go.mod
|
@ -5,11 +5,11 @@ go 1.15
|
|||
replace github.com/fluxcd/notification-controller/api => ./api
|
||||
|
||||
require (
|
||||
github.com/fluxcd/notification-controller/api v0.1.2
|
||||
github.com/fluxcd/notification-controller/api v0.2.0
|
||||
github.com/fluxcd/pkg/apis/meta v0.1.0
|
||||
github.com/fluxcd/pkg/recorder v0.0.6
|
||||
github.com/fluxcd/pkg/runtime v0.1.2
|
||||
github.com/fluxcd/source-controller/api v0.1.1
|
||||
github.com/fluxcd/source-controller/api v0.2.0
|
||||
github.com/go-logr/logr v0.1.0
|
||||
github.com/google/go-github/v32 v32.0.0
|
||||
github.com/hashicorp/go-retryablehttp v0.6.7
|
||||
|
|
4
go.sum
4
go.sum
|
@ -74,8 +74,8 @@ github.com/fluxcd/pkg/recorder v0.0.6 h1:me/n8syeeGXz50OXoPX3jgIj9AtinvhHdKT9Dy+
|
|||
github.com/fluxcd/pkg/recorder v0.0.6/go.mod h1:IfQxfVRSNsWs3B0Yp5B6ObEWwKHILlAx8N7XkoDdhFg=
|
||||
github.com/fluxcd/pkg/runtime v0.1.2 h1:bKhjJGVOJgTQTWjqhwasyt69lBItq1ZWjX04rUkiypo=
|
||||
github.com/fluxcd/pkg/runtime v0.1.2/go.mod h1:HXYTNdkK8ulcT1mhuGhio9tsX65ACKaealtd/MsnkhM=
|
||||
github.com/fluxcd/source-controller/api v0.1.1 h1:BYxl9qc8pCx3/Bn1885TlkJPwvXqz+rAL9mzpnCrj9A=
|
||||
github.com/fluxcd/source-controller/api v0.1.1/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
|
||||
github.com/fluxcd/source-controller/api v0.2.0 h1:a+N8+kLDH24lN2hp3klIFGuET3uMhhBWTM9qKdIRhM8=
|
||||
github.com/fluxcd/source-controller/api v0.2.0/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
|
||||
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
|
||||
|
|
Loading…
Reference in New Issue