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

Commit

Permalink
Merge pull request #1669 from hasbro17/haseeb/release-0.7.0-bump-version
Browse files Browse the repository at this point in the history
*: release 0.7.0, bump version, update CHANGELOG
  • Loading branch information
hasbro17 authored Nov 15, 2017
2 parents 527e6ec + 006d4ff commit 3bcbdb1
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 22 deletions.
33 changes: 15 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
## [Unreleased]

### Added

### Changed

### Removed

### Fixed

### Deprecated

### Security


## [Release 0.7.0]

Existing backup and restore features in EtcdCluster API won’t be supported after 0.7.0 release.
See [Decoupling Backup and Restore Logic from Etcd Operator](https://github.com/coreos/etcd-operator/issues/1626) for more detail.

Expand All @@ -11,20 +26,12 @@ If applicable then see the [upgrade guide](./doc/user/upgrade/upgrade_guide.md)
- Add etcd backup operator for backing up an etcd cluster.
- Add etcd restore operator for restoring an etcd cluster.

### Changed

### Removed

- Remove `pv-provisioner` flag from etcd operator.
- Remove etcd cluster Backup feature from etcd operator.
- Remove etcd cluster Restore from etcd operator.

### Fixed

### Deprecated

### Security


## [Release 0.6.1]

Expand All @@ -43,8 +50,6 @@ is specified, backup binary changes to serve http backup requests only mode.

- An EtcdCluster CR with an invalid spec will not be marked as failed. Any changes that result in an invalid spec will be ignored and logged by the operator.

### Removed

### Fixed

- Fix the problem that operator might keep failing on version conflict updating CR status.
Expand All @@ -53,8 +58,6 @@ is specified, backup binary changes to serve http backup requests only mode.

- The operator flag `--pv-provisioner` is depercated. We recommend to use per cluster storageClass.

### Security


## [Release 0.6.0]

Expand All @@ -73,12 +76,6 @@ is specified, backup binary changes to serve http backup requests only mode.
- Remove operator level S3 flag.
- Remove analytics flag. Disable Google analytics.

### Fixed

### Deprecated

### Security


## [Release 0.5.2]

Expand Down
4 changes: 3 additions & 1 deletion example/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ spec:
spec:
containers:
- name: etcd-operator
image: quay.io/coreos/etcd-operator:v0.6.1
image: quay.io/coreos/etcd-operator:v0.7.0
command:
- etcd-operator
env:
- name: MY_POD_NAMESPACE
valueFrom:
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: <operator-image>
image: quay.io/coreos/etcd-operator:v0.7.0
imagePullPolicy: Always
command:
- etcd-backup-operator
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: <operator-image>
image: quay.io/coreos/etcd-operator:v0.7.0
imagePullPolicy: Always
command:
- etcd-restore-operator
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.6.1+git"
Version = "0.7.0"
GitSHA = "Not provided (use ./build instead of go build)"
)

0 comments on commit 3bcbdb1

Please sign in to comment.