Release v0.2.2
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
parent
203bc942bb
commit
97187edc4e
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -2,6 +2,20 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.2.2 (2020-11-12)
|
||||||
|
|
||||||
|
This prerelease comes with improvements to status reporting.
|
||||||
|
The Kustomization dry-run can now be explicitly disabled
|
||||||
|
by setting `spec.validation` to `none`.
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* Patch status sub-resource
|
||||||
|
[#171](https://github.com/fluxcd/kustomize-controller/pull/171)
|
||||||
|
* Update kustomize/api to v0.6.5
|
||||||
|
[#170](https://github.com/fluxcd/kustomize-controller/pull/170)
|
||||||
|
* Allow disabling validation
|
||||||
|
[#168](https://github.com/fluxcd/kustomize-controller/pull/168)
|
||||||
|
|
||||||
## 0.2.1 (2020-11-04)
|
## 0.2.1 (2020-11-04)
|
||||||
|
|
||||||
This prerelease comes with improvements to garbage collection.
|
This prerelease comes with improvements to garbage collection.
|
||||||
|
|
|
@ -6,7 +6,7 @@ WORKDIR /workspace
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates curl
|
RUN apk add --no-cache ca-certificates curl
|
||||||
|
|
||||||
RUN kubectl_ver=1.19.3 && \
|
RUN kubectl_ver=1.19.4 && \
|
||||||
arch=${TARGETPLATFORM:-linux/amd64} && \
|
arch=${TARGETPLATFORM:-linux/amd64} && \
|
||||||
if [ "$TARGETPLATFORM" == "linux/arm/v7" ]; then arch="linux/arm"; fi && \
|
if [ "$TARGETPLATFORM" == "linux/arm/v7" ]; then arch="linux/arm"; fi && \
|
||||||
curl -sL https://storage.googleapis.com/kubernetes-release/release/v${kubectl_ver}/bin/${arch}/kubectl \
|
curl -sL https://storage.googleapis.com/kubernetes-release/release/v${kubectl_ver}/bin/${arch}/kubectl \
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -2,7 +2,7 @@
|
||||||
IMG ?= fluxcd/kustomize-controller:latest
|
IMG ?= fluxcd/kustomize-controller:latest
|
||||||
# Produce CRDs that work back to Kubernetes 1.16
|
# Produce CRDs that work back to Kubernetes 1.16
|
||||||
CRD_OPTIONS ?= crd:crdVersions=v1
|
CRD_OPTIONS ?= crd:crdVersions=v1
|
||||||
SOURCE_VER ?= v0.2.0
|
SOURCE_VER ?= v0.2.1
|
||||||
|
|
||||||
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
|
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
|
||||||
ifeq (,$(shell go env GOBIN))
|
ifeq (,$(shell go env GOBIN))
|
||||||
|
|
|
@ -5,6 +5,6 @@ resources:
|
||||||
- ../crd
|
- ../crd
|
||||||
- ../rbac
|
- ../rbac
|
||||||
- ../manager
|
- ../manager
|
||||||
- github.com/fluxcd/source-controller/config//crd?ref=v0.2.0
|
- github.com/fluxcd/source-controller/config//crd?ref=v0.2.1
|
||||||
- github.com/fluxcd/source-controller/config//manager?ref=v0.2.0
|
- github.com/fluxcd/source-controller/config//manager?ref=v0.2.1
|
||||||
- namespace.yaml
|
- namespace.yaml
|
||||||
|
|
|
@ -5,4 +5,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/kustomize-controller
|
- name: fluxcd/kustomize-controller
|
||||||
newName: fluxcd/kustomize-controller
|
newName: fluxcd/kustomize-controller
|
||||||
newTag: v0.2.1
|
newTag: v0.2.2
|
||||||
|
|
4
go.mod
4
go.mod
|
@ -5,12 +5,12 @@ go 1.15
|
||||||
replace github.com/fluxcd/kustomize-controller/api => ./api
|
replace github.com/fluxcd/kustomize-controller/api => ./api
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/fluxcd/kustomize-controller/api v0.2.1
|
github.com/fluxcd/kustomize-controller/api v0.2.2
|
||||||
github.com/fluxcd/pkg/apis/meta v0.2.0
|
github.com/fluxcd/pkg/apis/meta v0.2.0
|
||||||
github.com/fluxcd/pkg/runtime v0.2.0
|
github.com/fluxcd/pkg/runtime v0.2.0
|
||||||
github.com/fluxcd/pkg/testserver v0.0.2
|
github.com/fluxcd/pkg/testserver v0.0.2
|
||||||
github.com/fluxcd/pkg/untar v0.0.5
|
github.com/fluxcd/pkg/untar v0.0.5
|
||||||
github.com/fluxcd/source-controller/api v0.2.0
|
github.com/fluxcd/source-controller/api v0.2.1
|
||||||
github.com/go-logr/logr v0.2.1
|
github.com/go-logr/logr v0.2.1
|
||||||
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
|
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
|
||||||
github.com/onsi/ginkgo v1.12.1
|
github.com/onsi/ginkgo v1.12.1
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -170,8 +170,8 @@ github.com/fluxcd/pkg/testserver v0.0.2 h1:SoaMtO9cE5p/wl2zkGudzflnEHd9mk68CGjZO
|
||||||
github.com/fluxcd/pkg/testserver v0.0.2/go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y=
|
github.com/fluxcd/pkg/testserver v0.0.2/go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y=
|
||||||
github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk=
|
github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk=
|
||||||
github.com/fluxcd/pkg/untar v0.0.5/go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw=
|
github.com/fluxcd/pkg/untar v0.0.5/go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw=
|
||||||
github.com/fluxcd/source-controller/api v0.2.0 h1:a+N8+kLDH24lN2hp3klIFGuET3uMhhBWTM9qKdIRhM8=
|
github.com/fluxcd/source-controller/api v0.2.1 h1:CK2vpnEHa1nB1cqc3dAuO+hL6HGcSnh2xGmQfzmGef4=
|
||||||
github.com/fluxcd/source-controller/api v0.2.0/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
|
github.com/fluxcd/source-controller/api v0.2.1/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.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 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
|
||||||
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
|
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
|
||||||
|
|
Loading…
Reference in New Issue