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

Commit

Permalink
release: bump version to v0.9.4 and update changelog (#2060)
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
  • Loading branch information
hexfusion authored Feb 28, 2019
1 parent 149edb0 commit c8a1c64
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 9 deletions.
23 changes: 19 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,40 @@

### Added

### Changed

### Removed

### Fixed

### Deprecated

### Security

## [Release 0.9.4]

### Added

- Added `spec.BackupSource.S3.ForcePathStyle` to `EtcdBackup` to force path style s3 uploads. [#2036](https://github.com/coreos/etcd-operator/pull/2036)
- Added `spec.RestoreSource.S3.ForcePathStyle` to `EtcdRestore` to force path style s3 downloads. [#2036](https://github.com/coreos/etcd-operator/pull/2036)

### Changed

- Update Go version to 1.11.5
- Update k8s to 1.12.6
- EtcdBackup: Support periodically backup. This change added 3 new fileds in EtcdBackup schema, 2 variables is in spec, 1 varialbe is in status.
- EtcdBackup: Support periodic backups. This change added 3 new fields to EtcdBackup schema, 2 variables in spec, 1 variables in status.
- in spec.backupPolicy
- maxBackup which indicate maximum number of backup to keep
- backupIntervalInSecond which indicate how often do backup operation.
- maxBackup: maximum number of backups to keep.
- backupIntervalInSecond: how often to perform backup operation.
- in status
- LastSuccessDate which indicate the last time to succeed in taking backup
- LastSuccessDate: last time to succeed in taking backup

### Removed

### Fixed

- Fixed a bug where `same CR names` in different namespaces with cluster-wide operator were not working as expected [#2026](https://github.com/coreos/etcd-operator/pull/2026)
- Fixed a bug where cluster names could exceed 63 octets the maximum defined by [RFC 1035 section 2.3.4](https://tools.ietf.org/html/rfc1035) resulting in hanging pods [2027](https://github.com/coreos/etcd-operator/pull/2027).

### Deprecated

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.9.3
image: quay.io/coreos/etcd-operator:v0.9.4
command:
- etcd-operator
# Uncomment to act for resources in all namespaces. More information in doc/user/clusterwide.md
Expand Down
2 changes: 1 addition & 1 deletion example/deployment_psp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
fsGroup: 1000
containers:
- name: etcd-operator
image: quay.io/coreos/etcd-operator:v0.9.3
image: quay.io/coreos/etcd-operator:v0.9.4
command:
- etcd-operator
# Uncomment to act for resources in all namespaces. More information in doc/user/clusterwide.md
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.9.3
image: quay.io/coreos/etcd-operator:v0.9.4
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.9.3
image: quay.io/coreos/etcd-operator:v0.9.4
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.9.3+git"
Version = "0.9.4"
GitSHA = "Not provided (use ./build instead of go build)"
)

2 comments on commit c8a1c64

@hexfusion
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@christianhuening
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hexfusion thanks a lot! Already updated, working great!

Please sign in to comment.