Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 16f0e1b

Browse files
authored
Merge pull request #1938 from hasbro17/haseeb/bump-version-0.9.1
*: bump version to v0.9.1 and update changelog
2 parents 9f13c66 + 5f3f9c2 commit 16f0e1b

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,28 @@
22

33
### Added
44

5-
- 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)
6-
- 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)
7-
- 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)
8-
95
### Changed
106

117
### Removed
128

139
### Fixed
1410

15-
- 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)
16-
1711
### Deprecated
1812

1913
### Security
2014

15+
## [Release 0.9.1]
16+
17+
### Added
18+
19+
- 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)
20+
- 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)
21+
- 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)
22+
23+
### Fixed
24+
25+
- 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)
26+
2127
## [Release 0.9.0]
2228

2329
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.

example/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: etcd-operator
14-
image: quay.io/coreos/etcd-operator:v0.9.0
14+
image: quay.io/coreos/etcd-operator:v0.9.1
1515
command:
1616
- etcd-operator
1717
# Uncomment to act for resources in all namespaces. More information in doc/clusterwide.md

example/etcd-backup-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: etcd-backup-operator
14-
image: quay.io/coreos/etcd-operator:v0.9.0
14+
image: quay.io/coreos/etcd-operator:v0.9.1
1515
command:
1616
- etcd-backup-operator
1717
env:

example/etcd-restore-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: etcd-restore-operator
16-
image: quay.io/coreos/etcd-operator:v0.9.0
16+
image: quay.io/coreos/etcd-operator:v0.9.1
1717
command:
1818
- etcd-restore-operator
1919
env:

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
package version
1616

1717
var (
18-
Version = "0.9.0+git"
18+
Version = "0.9.1"
1919
GitSHA = "Not provided (use ./build instead of go build)"
2020
)

0 commit comments

Comments
 (0)