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

release: bump version #1883

Merged
merged 3 commits into from
Jan 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

### Added

### Changed

### Removed

### Fixed

### Deprecated

### Security

## [Release 0.8.3]

### Added

- Added the option to use PersistentVolume as non-stable storage for etcd pods. This feature is still alpha and subject to change in future releases [#1861](https://github.com/coreos/etcd-operator/pull/1861)

### Changed
Expand All @@ -22,16 +36,10 @@
example-etcd-cluster-w5q9sn37fd 1/1 Running 0 1m
```

### Removed

### Fixed

- Fixed a bug where the restore operator would fail to restore the seed member because recreating an etcd pod with the same name as a recently deleted one would conflict as the older pod and its resources, like the DNS name, might still not be deleted. [#1825](https://github.com/coreos/etcd-operator/issues/1825)

### Deprecated

### Security


## [Release 0.8.2]

Expand Down
2 changes: 1 addition & 1 deletion example/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: etcd-operator
image: quay.io/coreos/etcd-operator:v0.8.2
image: quay.io/coreos/etcd-operator:v0.8.3
command:
- etcd-operator
env:
Expand Down
2 changes: 1 addition & 1 deletion example/etcd-backup-operator/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: etcd-backup-operator
image: quay.io/coreos/etcd-operator:v0.8.2
image: quay.io/coreos/etcd-operator:v0.8.3
command:
- etcd-backup-operator
env:
Expand Down
2 changes: 1 addition & 1 deletion example/etcd-restore-operator/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
spec:
containers:
- name: etcd-restore-operator
image: quay.io/coreos/etcd-operator:v0.8.2
image: quay.io/coreos/etcd-operator:v0.8.3
command:
- etcd-restore-operator
env:
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
package version

var (
Version = "0.8.2+git"
Version = "0.8.3"
GitSHA = "Not provided (use ./build instead of go build)"
)