diff --git a/CHANGELOG.md b/CHANGELOG.md index bb63657f9..9fa1d7daf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,22 +2,28 @@ ### Added -- Added optional flag `--cluster-wide` to etcd-operator to allow it to manage etcd clusters across all namespaces. [#1777](https://github.com/coreos/etcd-operator/pull/1777) -- Added support for annotation `etcd.database.coreos.com/scope: clusterwide` in `EtcdCluster` to allow it to be managed by a cluster wide operator. [#1777](https://github.com/coreos/etcd-operator/pull/1777) -- Added the field `spec.pod.busyboxImage` to the `PodPolicy` of the `EtcdCluster` to allow overriding the default busybox image used for the etcd pod's init container. [#1928](https://github.com/coreos/etcd-operator/pull/1928) - ### Changed ### Removed ### Fixed -- Fixed a bug where the informer watch stream would timeout after 30s of not receiving an event. [#1936](https://github.com/coreos/etcd-operator/pull/1936) - ### Deprecated ### Security +## [Release 0.9.1] + +### Added + +- Added optional flag `--cluster-wide` to etcd-operator to allow it to manage etcd clusters across all namespaces. [#1777](https://github.com/coreos/etcd-operator/pull/1777) +- Added support for annotation `etcd.database.coreos.com/scope: clusterwide` in `EtcdCluster` to allow it to be managed by a cluster wide operator. [#1777](https://github.com/coreos/etcd-operator/pull/1777) +- Added the field `spec.pod.busyboxImage` to the `PodPolicy` of the `EtcdCluster` to allow overriding the default busybox image used for the etcd pod's init container. [#1928](https://github.com/coreos/etcd-operator/pull/1928) + +### Fixed + +- Fixed a bug where the informer watch stream would timeout after 30s of not receiving an event. [#1936](https://github.com/coreos/etcd-operator/pull/1936) + ## [Release 0.9.0] Same as v0.8.4. The version is bumping to 0.9.0 due to adding a new ABS backup API into etcd-backup-operator. diff --git a/example/deployment.yaml b/example/deployment.yaml index bd3f5352c..fca14da03 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.0 + image: quay.io/coreos/etcd-operator:v0.9.1 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 d1f1cbac5..7d886c048 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.0 + image: quay.io/coreos/etcd-operator:v0.9.1 command: - etcd-backup-operator env: diff --git a/example/etcd-restore-operator/deployment.yaml b/example/etcd-restore-operator/deployment.yaml index b69c066a9..810597a97 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.0 + image: quay.io/coreos/etcd-operator:v0.9.1 command: - etcd-restore-operator env: diff --git a/version/version.go b/version/version.go index e4a597496..371b66e3e 100644 --- a/version/version.go +++ b/version/version.go @@ -15,6 +15,6 @@ package version var ( - Version = "0.9.0+git" + Version = "0.9.1" GitSHA = "Not provided (use ./build instead of go build)" )