File tree Expand file tree Collapse file tree 6 files changed +23
-8
lines changed Expand file tree Collapse file tree 6 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project are documented in this file.
44
5+ ## 0.4.0 (2020-11-26)
6+
7+ This is the fourth MINOR prerelease. Suspended Kustomizations are
8+ no longer marked as not ready, the status sub-resource is left untouched.
9+
10+ Improvements:
11+ * Do not mark suspended resource as not ready
12+ [ #183 ] ( https://github.com/fluxcd/kustomize-controller/pull/183 )
13+ * Set field manager to ` kustomize-controller ` instead of ` kubectl `
14+ [ #184 ] ( https://github.com/fluxcd/kustomize-controller/pull/184 )
15+
16+ Fixes:
17+ * Requeue after interval on source not found errors
18+ [ #182 ] ( https://github.com/fluxcd/kustomize-controller/pull/182 )
19+
520## 0.3.0 (2020-11-20)
621
722This is the third MINOR prerelease. It introduces two breaking changes:
Original file line number Diff line number Diff line change 22IMG ?= fluxcd/kustomize-controller:latest
33# Produce CRDs that work back to Kubernetes 1.16
44CRD_OPTIONS ?= crd:crdVersions=v1
5- SOURCE_VER ?= v0.3 .0
5+ SOURCE_VER ?= v0.4 .0
66
77# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
88ifeq (,$(shell go env GOBIN) )
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ resources:
55- ../crd
66- ../rbac
77- ../manager
8- - github.com/fluxcd/source-controller/config//crd?ref=v0.3 .0
9- - github.com/fluxcd/source-controller/config//manager?ref=v0.3 .0
8+ - github.com/fluxcd/source-controller/config//crd?ref=v0.4 .0
9+ - github.com/fluxcd/source-controller/config//manager?ref=v0.4 .0
1010- namespace.yaml
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ resources:
55images :
66 - name : fluxcd/kustomize-controller
77 newName : fluxcd/kustomize-controller
8- newTag : v0.3 .0
8+ newTag : v0.4 .0
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ go 1.15
55replace github.com/fluxcd/kustomize-controller/api => ./api
66
77require (
8- github.com/fluxcd/kustomize-controller/api v0.3 .0
8+ github.com/fluxcd/kustomize-controller/api v0.4 .0
99 github.com/fluxcd/pkg/apis/meta v0.4.0
1010 github.com/fluxcd/pkg/runtime v0.3.1
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.3 .0
13+ github.com/fluxcd/source-controller/api v0.4 .0
1414 github.com/go-logr/logr v0.2.1
1515 github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
1616 github.com/onsi/ginkgo v1.12.1
Original file line number Diff line number Diff line change @@ -171,8 +171,8 @@ github.com/fluxcd/pkg/testserver v0.0.2 h1:SoaMtO9cE5p/wl2zkGudzflnEHd9mk68CGjZO
171171github.com/fluxcd/pkg/testserver v0.0.2 /go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y =
172172github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk =
173173github.com/fluxcd/pkg/untar v0.0.5 /go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw =
174- github.com/fluxcd/source-controller/api v0.3 .0 h1:liDV8tqpBeQp7KDdVxX9YYb6gFoO7v2hyIFXudw2vQg =
175- github.com/fluxcd/source-controller/api v0.3 .0 /go.mod h1:MYmvbADJp/21m4C+PEY7WXCeqEErMYuhns+jnKyewqs =
174+ github.com/fluxcd/source-controller/api v0.4 .0 h1:hyHMFXLxkTT4H7KT7h0UUb3GK6bS2JJzNCcilBk2fXs =
175+ github.com/fluxcd/source-controller/api v0.4 .0 /go.mod h1:MYmvbADJp/21m4C+PEY7WXCeqEErMYuhns+jnKyewqs =
176176github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
177177github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4 =
178178github.com/fsnotify/fsnotify v1.4.9 /go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ =
You can’t perform that action at this time.
0 commit comments