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

Commit

Permalink
release: 0.8.1 (#1850)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongchaodeng committed Jan 10, 2018
1 parent e730a3a commit b97d930
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 25 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,26 @@

### Changed

- etcd-restore-operator will create a service for itself as the backup storage proxy. Delete the service in deployment yaml.

### Removed

### Fixed

- Fix etcd-restore-operator wouldn't report error and keep looping if EtcdRestore name is different than EtcdCluster name.

### Deprecated

### Security


## [Release 0.8.1]

### Changed

- etcd-restore-operator will create a service for itself as the backup storage proxy. Delete the service in deployment yaml.

### Fixed

- Fix etcd-restore-operator wouldn't report error and keep looping if EtcdRestore name is different than EtcdCluster name.


## [Release 0.8.0]

**Important Changes**
Expand Down
29 changes: 12 additions & 17 deletions doc/dev/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,28 @@ Let's say we are releasing $VERSION (e.g. `v1.2.3`) .

## Create git tag

- In version/version.go, bump it to:
```go
// Version = "0.2.2" (without "v" prefix)
Version = "$VERSION"
```

- Bump the version of the operator image in example deployements.

TOOD: release checker should check the version in the deployment.
- Bump up version (e.g. 0.8.0 -> 0.8.1):
```bash
./hack/release/bump_version.sh 0.8.0 0.8.1
```

- Change CHANGELOG.md.
- Update CHANGELOG.md.

- Send a PR. After it's merged, cut a tag:

``` bash
$ git tag $VERSION
$ git push ${upstream_remote} tags/$VERSION
```
```bash
git tag $VERSION
git push ${upstream_remote} tags/$VERSION
```


## Push Image to Quay

- Login to quay.io using docker if haven't:

```bash
$ docker login quay.io
```
```bash
docker login quay.io
```

Follow the prompts.

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.8.0
image: quay.io/coreos/etcd-operator:v0.8.1
command:
- etcd-operator
env:
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.8.0
image: quay.io/coreos/etcd-operator:v0.8.1
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.8.0
image: quay.io/coreos/etcd-operator:v0.8.1
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.8.0+git"
Version = "0.8.1"
GitSHA = "Not provided (use ./build instead of go build)"
)

0 comments on commit b97d930

Please sign in to comment.