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

release: 0.3.1 #1168

Merged
merged 1 commit into from
Jun 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
## [Unreleased 0.3.1]
## [Unreleased 0.3.2]

### Added

### Changed

### Removed

### Fixed

### Deprecated

### Security


## [Release 0.3.1]


**Notes for self-hosted etcd**:
The newly introduced TLS feature for self hosted etcd is a breaking change.
Expand Down
2 changes: 1 addition & 1 deletion example/deployment-aws.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.3.0
image: quay.io/coreos/etcd-operator:v0.3.1
command:
- /usr/local/bin/etcd-operator
- --pv-provisioner=kubernetes.io/aws-ebs
Expand Down
2 changes: 1 addition & 1 deletion example/deployment-s3-backup.yaml.template
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.3.0
image: quay.io/coreos/etcd-operator:v0.3.1
command:
- /usr/local/bin/etcd-operator
- --backup-aws-secret=aws # assuming the configmap and secret are both named 'aws'
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.3.0
image: quay.io/coreos/etcd-operator:v0.3.1
env:
- name: MY_POD_NAMESPACE
valueFrom:
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.3.0+git"
Version = "0.3.1"
GitSHA = "Not provided (use ./build instead of go build)"
)