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

Commit c8a1c64

Browse files
authored
release: bump version to v0.9.4 and update changelog (#2060)
Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
1 parent 149edb0 commit c8a1c64

6 files changed

Lines changed: 24 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,40 @@
22

33
### Added
44

5+
### Changed
6+
7+
### Removed
8+
9+
### Fixed
10+
11+
### Deprecated
12+
13+
### Security
14+
15+
## [Release 0.9.4]
16+
17+
### Added
18+
519
- Added `spec.BackupSource.S3.ForcePathStyle` to `EtcdBackup` to force path style s3 uploads. [#2036](https://github.com/coreos/etcd-operator/pull/2036)
620
- Added `spec.RestoreSource.S3.ForcePathStyle` to `EtcdRestore` to force path style s3 downloads. [#2036](https://github.com/coreos/etcd-operator/pull/2036)
721

822
### Changed
923

1024
- Update Go version to 1.11.5
1125
- Update k8s to 1.12.6
12-
- EtcdBackup: Support periodically backup. This change added 3 new fileds in EtcdBackup schema, 2 variables is in spec, 1 varialbe is in status.
26+
- EtcdBackup: Support periodic backups. This change added 3 new fields to EtcdBackup schema, 2 variables in spec, 1 variables in status.
1327
- in spec.backupPolicy
14-
- maxBackup which indicate maximum number of backup to keep
15-
- backupIntervalInSecond which indicate how often do backup operation.
28+
- maxBackup: maximum number of backups to keep.
29+
- backupIntervalInSecond: how often to perform backup operation.
1630
- in status
17-
- LastSuccessDate which indicate the last time to succeed in taking backup
31+
- LastSuccessDate: last time to succeed in taking backup
1832

1933
### Removed
2034

2135
### Fixed
2236

2337
- 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)
38+
- 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).
2439

2540
### Deprecated
2641

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.3
14+
image: quay.io/coreos/etcd-operator:v0.9.4
1515
command:
1616
- etcd-operator
1717
# Uncomment to act for resources in all namespaces. More information in doc/user/clusterwide.md

example/deployment_psp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
fsGroup: 1000
1515
containers:
1616
- name: etcd-operator
17-
image: quay.io/coreos/etcd-operator:v0.9.3
17+
image: quay.io/coreos/etcd-operator:v0.9.4
1818
command:
1919
- etcd-operator
2020
# Uncomment to act for resources in all namespaces. More information in doc/user/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.3
14+
image: quay.io/coreos/etcd-operator:v0.9.4
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.3
16+
image: quay.io/coreos/etcd-operator:v0.9.4
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.3+git"
18+
Version = "0.9.4"
1919
GitSHA = "Not provided (use ./build instead of go build)"
2020
)

0 commit comments

Comments
 (0)