From 42a303c62ff7e4fda3863a6cf34e303d28040b52 Mon Sep 17 00:00:00 2001 From: Sam Batschelet Date: Wed, 21 Nov 2018 14:33:35 -0500 Subject: [PATCH] release: bump version to v0.9.3 and update changelog Signed-off-by: Sam Batschelet --- CHANGELOG.md | 21 ++++++++++++------- example/deployment.yaml | 2 +- example/etcd-backup-operator/deployment.yaml | 2 +- example/etcd-restore-operator/deployment.yaml | 2 +- version/version.go | 2 +- 5 files changed, 18 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67258c828..492ceb3d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ ### Added +### Changed + +### Removed + +### Fixed + +### Deprecated + +### Security + +## [Release 0.9.3] + +### Added + - Added `spec.pod.DNSTimeoutInSecond` to `EtcdCluster` that allows setting a maximum allowed time for the init container of the etcd pod to reverse DNS lookup its IP given the hostname. ### Changed @@ -11,17 +25,10 @@ - k8s codegen updates are longer performed via container. Go dependencies are now vendored and updates are performed with shell script locally. -### Removed - ### Fixed - - Fixed leaking http connections while verifying backup snapshots. [#1976](https://github.com/coreos/etcd-operator/pull/1976) -### Deprecated - -### Security - ## [Release 0.9.2] ### Added diff --git a/example/deployment.yaml b/example/deployment.yaml index f355504d1..ed6e1ed89 100644 --- a/example/deployment.yaml +++ b/example/deployment.yaml @@ -11,7 +11,7 @@ spec: spec: containers: - name: etcd-operator - image: quay.io/coreos/etcd-operator:v0.9.2 + image: quay.io/coreos/etcd-operator:v0.9.3 command: - etcd-operator # Uncomment to act for resources in all namespaces. More information in doc/clusterwide.md diff --git a/example/etcd-backup-operator/deployment.yaml b/example/etcd-backup-operator/deployment.yaml index c7a807a50..a014d7ec8 100644 --- a/example/etcd-backup-operator/deployment.yaml +++ b/example/etcd-backup-operator/deployment.yaml @@ -11,7 +11,7 @@ spec: spec: containers: - name: etcd-backup-operator - image: quay.io/coreos/etcd-operator:v0.9.2 + image: quay.io/coreos/etcd-operator:v0.9.3 command: - etcd-backup-operator env: diff --git a/example/etcd-restore-operator/deployment.yaml b/example/etcd-restore-operator/deployment.yaml index 5955f98e3..2ea581d0c 100644 --- a/example/etcd-restore-operator/deployment.yaml +++ b/example/etcd-restore-operator/deployment.yaml @@ -13,7 +13,7 @@ spec: spec: containers: - name: etcd-restore-operator - image: quay.io/coreos/etcd-operator:v0.9.2 + image: quay.io/coreos/etcd-operator:v0.9.3 command: - etcd-restore-operator env: diff --git a/version/version.go b/version/version.go index eb7c40acc..bf30c287b 100644 --- a/version/version.go +++ b/version/version.go @@ -15,6 +15,6 @@ package version var ( - Version = "0.9.2+git" + Version = "0.9.3" GitSHA = "Not provided (use ./build instead of go build)" )