Skip to content

Commit 41796c0

Browse files
authored
Merge pull request #140 from fluxcd/release-v0.1.1
Release v0.1.1
2 parents 9feda00 + 2125d6c commit 41796c0

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
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

api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fluxcd/kustomize-controller/api
22

3-
go 1.14
3+
go 1.15
44

55
require (
66
github.com/fluxcd/pkg/apis/meta v0.0.2

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ resources:
55
images:
66
- name: fluxcd/kustomize-controller
77
newName: fluxcd/kustomize-controller
8-
newTag: v0.1.0
8+
newTag: v0.1.1

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
module github.com/fluxcd/kustomize-controller
22

3-
go 1.14
3+
go 1.15
44

55
replace github.com/fluxcd/kustomize-controller/api => ./api
66

77
require (
8-
github.com/fluxcd/kustomize-controller/api v0.1.0
8+
github.com/fluxcd/kustomize-controller/api v0.1.1
99
github.com/fluxcd/pkg/apis/meta v0.0.2
1010
github.com/fluxcd/pkg/runtime v0.1.0
1111
github.com/fluxcd/pkg/testserver v0.0.2
1212
github.com/fluxcd/pkg/untar v0.0.5
13-
github.com/fluxcd/source-controller/api v0.1.0
13+
github.com/fluxcd/source-controller/api v0.1.1
1414
github.com/go-logr/logr v0.1.0
1515
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
1616
github.com/onsi/ginkgo v1.12.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ github.com/fluxcd/pkg/testserver v0.0.2 h1:SoaMtO9cE5p/wl2zkGudzflnEHd9mk68CGjZO
155155
github.com/fluxcd/pkg/testserver v0.0.2/go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y=
156156
github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk=
157157
github.com/fluxcd/pkg/untar v0.0.5/go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw=
158-
github.com/fluxcd/source-controller/api v0.1.0 h1:ky3gMs3mnkDl6ClX+7uT2BNxU+sLzW/6a8B/M1KfySw=
159-
github.com/fluxcd/source-controller/api v0.1.0/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
158+
github.com/fluxcd/source-controller/api v0.1.1 h1:BYxl9qc8pCx3/Bn1885TlkJPwvXqz+rAL9mzpnCrj9A=
159+
github.com/fluxcd/source-controller/api v0.1.1/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
160160
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
161161
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
162162
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=

0 commit comments

Comments
 (0)