File tree Expand file tree Collapse file tree 6 files changed +43
-8
lines changed Expand file tree Collapse file tree 6 files changed +43
-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.8.0
6+
7+ ** Release date:** 2021-02-12
8+
9+ This is the eight MINOR prerelease.
10+
11+ This prerelease comes with support for bash-style
12+ [ variable substitutions] ( https://github.com/fluxcd/kustomize-controller/blob/v0.8.0/docs/spec/v1beta1/kustomization.md#variable-substitution ) .
13+
14+ The Kustomization API was extended with in-line support for Kustomize
15+ [ Strategic Merge and JSON 6902 patches] ( https://github.com/fluxcd/kustomize-controller/blob/v0.8.0/docs/spec/v1beta1/kustomization.md#override-kustomize-config ) .
16+
17+ Pruning can be disabled for certain resources by either
18+ labeling or annotating them with:
19+ ``` yaml
20+ kustomize.toolkit.fluxcd.io/prune : disabled
21+ ` ` `
22+
23+ Golang ` pprof` endpoints have been enabled on the metrics server,
24+ making it easier to collect runtime information to debug performance issues.
25+
26+ Features :
27+ * Add support for variable substitutions
28+ [#253](https://github.com/fluxcd/kustomize-controller/pull/253)
29+ * Support Strategic Merge and JSON 6902 patches
30+ [#264](https://github.com/fluxcd/kustomize-controller/pull/264)
31+ * Allow disabling of prune on certain resources
32+ [#267](https://github.com/fluxcd/kustomize-controller/pull/267)
33+
34+ Improvements :
35+ * Enable pprof endpoints on metrics server
36+ [#266](https://github.com/fluxcd/kustomize-controller/pull/266)
37+ * Update `kustomize/api` to v0.7.4
38+ [#269](https://github.com/fluxcd/kustomize-controller/pull/269)
39+
540# # 0.7.4
641
742**Release date:** 2021-02-02
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.7.3
5+ SOURCE_VER ?= v0.8.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.7.3
9- - github.com/fluxcd/source-controller/config//manager?ref=v0.7.3
8+ - github.com/fluxcd/source-controller/config//crd?ref=v0.8.0
9+ - github.com/fluxcd/source-controller/config//manager?ref=v0.8.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.7.4
8+ newTag : v0.8.0
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ replace github.com/fluxcd/kustomize-controller/api => ./api
77require (
88 github.com/cyphar/filepath-securejoin v0.2.2
99 github.com/drone/envsubst v1.0.3-0.20200804185402-58bc65f69603
10- github.com/fluxcd/kustomize-controller/api v0.7.4
10+ github.com/fluxcd/kustomize-controller/api v0.8.0
1111 github.com/fluxcd/pkg/apis/kustomize v0.0.1
1212 github.com/fluxcd/pkg/apis/meta v0.7.0
1313 github.com/fluxcd/pkg/runtime v0.8.1
1414 github.com/fluxcd/pkg/testserver v0.0.2
1515 github.com/fluxcd/pkg/untar v0.0.5
16- github.com/fluxcd/source-controller/api v0.7.3
16+ github.com/fluxcd/source-controller/api v0.8.0
1717 github.com/go-logr/logr v0.3.0
1818 github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
1919 github.com/onsi/ginkgo v1.14.1
Original file line number Diff line number Diff line change @@ -202,8 +202,8 @@ github.com/fluxcd/pkg/testserver v0.0.2 h1:SoaMtO9cE5p/wl2zkGudzflnEHd9mk68CGjZO
202202github.com/fluxcd/pkg/testserver v0.0.2 /go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y =
203203github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk =
204204github.com/fluxcd/pkg/untar v0.0.5 /go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw =
205- github.com/fluxcd/source-controller/api v0.7.3 h1:bxJaNttoyY3dnnv6tCXrQk/w6fJuSK2OlIzf/CkhP0A =
206- github.com/fluxcd/source-controller/api v0.7.3 /go.mod h1:u2sdc/QDm0tzXHL7mZVj928hc3MMU+4mKCuAQg+94Bk =
205+ github.com/fluxcd/source-controller/api v0.8.0 h1:jOgeOwCLXzmjinRiDT7e/IuSB7WNZMgrUwMLJm09K/o =
206+ github.com/fluxcd/source-controller/api v0.8.0 /go.mod h1:u2sdc/QDm0tzXHL7mZVj928hc3MMU+4mKCuAQg+94Bk =
207207github.com/form3tech-oss/jwt-go v3.2.2+incompatible h1:TcekIExNqud5crz4xD2pavyTgWiPvpYe4Xau31I0PRk =
208208github.com/form3tech-oss/jwt-go v3.2.2+incompatible /go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k =
209209github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
You can’t perform that action at this time.
0 commit comments