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

Commit bcad5ae

Browse files
authored
Merge pull request #1218 from hongchaodeng/v
release: v0.3.3
2 parents 2998ca9 + 8bd3cb7 commit bcad5ae

5 files changed

Lines changed: 19 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,31 @@
1-
## [Unreleased 0.3.3]
1+
## [Unreleased 0.3.4]
22

33
### Added
44

5-
- Adds ability for users to specify base image for etcd pods in a cluster.
6-
75
### Changed
86

97
### Removed
108

119
### Fixed
1210

13-
- [GH-1138] Fixed operator stucks in managing selfhosted cluster when there are not enough nodes to start new etcd member.
14-
- [GH-1196] Fixed etcd operator could not start S3 backup sidecar if given non-root user.
15-
1611
### Deprecated
1712

1813
### Security
1914

15+
16+
## [Release 0.3.3]
17+
18+
### Added
19+
20+
- Adds ability for users to specify base image for etcd pods in a cluster.
21+
Default base image is `quay.io/coreos/etcd-operator`.
22+
23+
### Fixed
24+
25+
- [GH-1138] Fixed operator stucks in managing selfhosted cluster when there are not enough nodes to start new etcd member.
26+
- [GH-1196] Fixed etcd operator could not start S3 backup sidecar if given non-root user.
27+
28+
2029
## [Release 0.3.2]
2130

2231
Bug fix release to fix self-hosted etcd issue [GH-1171] .

example/deployment-aws.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.3.2
14+
image: quay.io/coreos/etcd-operator:v0.3.3
1515
command:
1616
- /usr/local/bin/etcd-operator
1717
- --pv-provisioner=kubernetes.io/aws-ebs

example/deployment-s3-backup.yaml.template

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.3.2
14+
image: quay.io/coreos/etcd-operator:v0.3.3
1515
command:
1616
- /usr/local/bin/etcd-operator
1717
- --backup-aws-secret=aws # assuming the configmap and secret are both named 'aws'

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.3.2
14+
image: quay.io/coreos/etcd-operator:v0.3.3
1515
env:
1616
- name: MY_POD_NAMESPACE
1717
valueFrom:

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.3.2+git"
18+
Version = "0.3.3"
1919
GitSHA = "Not provided (use ./build instead of go build)"
2020
)

0 commit comments

Comments
 (0)