Skip to content

Commit 5f7a8da

Browse files
authored
Merge pull request #60 from fluxcd/release-v0.1.1
Release v0.1.1
2 parents 4c63796 + 90570ab commit 5f7a8da

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 0.1.1 (2020-10-13)
6+
7+
This prerelease comes with Prometheus instrumentation for the controller's resources.
8+
9+
For each kind, the controller exposes a gauge metric to track the `Ready` condition status,
10+
and a histogram with the reconciliation duration in seconds:
11+
12+
* `gotk_reconcile_condition{kind, name, namespace, status, type="Ready"}`
13+
* `gotk_reconcile_duration{kind, name, namespace}`
14+
515
## 0.1.0 (2020-09-30)
616

717
This is the first MINOR prerelease, it promotes the

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ resources:
66
images:
77
- name: fluxcd/notification-controller
88
newName: fluxcd/notification-controller
9-
newTag: v0.1.0
9+
newTag: v0.1.1

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ go 1.15
55
replace github.com/fluxcd/notification-controller/api => ./api
66

77
require (
8-
github.com/fluxcd/notification-controller/api v0.1.0
8+
github.com/fluxcd/notification-controller/api v0.1.1
99
github.com/fluxcd/pkg/apis/meta v0.0.2
1010
github.com/fluxcd/pkg/recorder v0.0.6
1111
github.com/fluxcd/pkg/runtime v0.1.0
12-
github.com/fluxcd/source-controller/api v0.1.0
12+
github.com/fluxcd/source-controller/api v0.1.1
1313
github.com/go-logr/logr v0.1.0
1414
github.com/google/go-github/v32 v32.0.0
1515
github.com/hashicorp/go-retryablehttp v0.6.7

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ github.com/fluxcd/pkg/recorder v0.0.6 h1:me/n8syeeGXz50OXoPX3jgIj9AtinvhHdKT9Dy+
7272
github.com/fluxcd/pkg/recorder v0.0.6/go.mod h1:IfQxfVRSNsWs3B0Yp5B6ObEWwKHILlAx8N7XkoDdhFg=
7373
github.com/fluxcd/pkg/runtime v0.1.0 h1:mCLj5GlQZqWtK3tvtZTmfgFOLsTUY1iqg3CmEyS1nRs=
7474
github.com/fluxcd/pkg/runtime v0.1.0/go.mod h1:OXkrYtDLw3GhclbzvnzfSktUyxRmC3FFhXj0tVVaIX8=
75-
github.com/fluxcd/source-controller/api v0.1.0 h1:ky3gMs3mnkDl6ClX+7uT2BNxU+sLzW/6a8B/M1KfySw=
76-
github.com/fluxcd/source-controller/api v0.1.0/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
75+
github.com/fluxcd/source-controller/api v0.1.1 h1:BYxl9qc8pCx3/Bn1885TlkJPwvXqz+rAL9mzpnCrj9A=
76+
github.com/fluxcd/source-controller/api v0.1.1/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
7777
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
7878
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
7979
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=

0 commit comments

Comments
 (0)