This repository was archived by the owner on Mar 28, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +27
-25
lines changed
Expand file tree Collapse file tree 6 files changed +27
-25
lines changed Original file line number Diff line number Diff line change 44
55### Changed
66
7- - etcd-restore-operator will create a service for itself as the backup storage proxy. Delete the service in deployment yaml.
8-
97### Removed
108
119### Fixed
1210
13- - Fix etcd-restore-operator wouldn't report error and keep looping if EtcdRestore name is different than EtcdCluster name.
14-
1511### Deprecated
1612
1713### Security
1814
1915
16+ ## [ Release 0.8.1]
17+
18+ ### Changed
19+
20+ - etcd-restore-operator will create a service for itself as the backup storage proxy. Delete the service in deployment yaml.
21+
22+ ### Fixed
23+
24+ - Fix etcd-restore-operator wouldn't report error and keep looping if EtcdRestore name is different than EtcdCluster name.
25+
26+
2027## [ Release 0.8.0]
2128
2229** Important Changes**
Original file line number Diff line number Diff line change @@ -6,33 +6,28 @@ Let's say we are releasing $VERSION (e.g. `v1.2.3`) .
66
77## Create git tag
88
9- - In version/version.go, bump it to:
10- ``` go
11- // Version = "0.2.2" (without "v" prefix)
12- Version = " $VERSION"
13- ```
14-
15- - Bump the version of the operator image in example deployements.
16-
17- TOOD: release checker should check the version in the deployment.
9+ - Bump up version (e.g. 0.8.0 -> 0.8.1):
10+ ``` bash
11+ ./hack/release/bump_version.sh 0.8.0 0.8.1
12+ ```
1813
19- - Change CHANGELOG.md.
14+ - Update CHANGELOG.md.
2015
2116- Send a PR. After it's merged, cut a tag:
2217
23- ``` bash
24- $ git tag $VERSION
25- $ git push ${upstream_remote} tags/$VERSION
26- ```
18+ ``` bash
19+ git tag $VERSION
20+ git push ${upstream_remote} tags/$VERSION
21+ ```
2722
2823
2924## Push Image to Quay
3025
3126- Login to quay.io using docker if haven't:
3227
33- ``` bash
34- $ docker login quay.io
35- ```
28+ ``` bash
29+ docker login quay.io
30+ ```
3631
3732Follow the prompts.
3833
Original file line number Diff line number Diff line change 1111 spec :
1212 containers :
1313 - name : etcd-operator
14- image : quay.io/coreos/etcd-operator:v0.8.0
14+ image : quay.io/coreos/etcd-operator:v0.8.1
1515 command :
1616 - etcd-operator
1717 env :
Original file line number Diff line number Diff line change 1111 spec :
1212 containers :
1313 - name : etcd-backup-operator
14- image : quay.io/coreos/etcd-operator:v0.8.0
14+ image : quay.io/coreos/etcd-operator:v0.8.1
1515 command :
1616 - etcd-backup-operator
1717 env :
Original file line number Diff line number Diff line change 1313 spec :
1414 containers :
1515 - name : etcd-restore-operator
16- image : quay.io/coreos/etcd-operator:v0.8.0
16+ image : quay.io/coreos/etcd-operator:v0.8.1
1717 command :
1818 - etcd-restore-operator
1919 env :
Original file line number Diff line number Diff line change 1515package version
1616
1717var (
18- Version = "0.8.0+git "
18+ Version = "0.8.1 "
1919 GitSHA = "Not provided (use ./build instead of go build)"
2020)
You can’t perform that action at this time.
0 commit comments