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

Commit a0032c1

Browse files
authored
Merge pull request #1951 from hasbro17/haseeb/release-v0.9.2
release: bump version to v0.9.2 and update changelog
2 parents 7d6f95a + 17a4624 commit a0032c1

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,8 @@
22

33
### Added
44

5-
- Added the field `spec.pod.securityContext` to `EtcdCluster` that allows setting a specific [PodSecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) for the etcd pods. [#1949](https://github.com/coreos/etcd-operator/pull/1949)
6-
75
### Changed
86

9-
- Update Go version to 1.10
10-
- Build `gcr.io/coreos-k8s-scale-testing/etcd-operator-builder:0.4.1-2` container
11-
with Go 1.10 and dep 0.4.1
12-
- etcd pod containers no longer run with a non-root security context by default. This setting can be configured per cluster via the PodPolicy.
13-
147
### Removed
158

169
### Fixed
@@ -19,6 +12,19 @@
1912

2013
### Security
2114

15+
## [Release 0.9.2]
16+
17+
### Added
18+
19+
- Added the field `spec.pod.securityContext` to `EtcdCluster` that allows setting a specific [PodSecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) for the etcd pods. [#1949](https://github.com/coreos/etcd-operator/pull/1949)
20+
21+
### Changed
22+
23+
- Update Go version to 1.10
24+
- Build `gcr.io/coreos-k8s-scale-testing/etcd-operator-builder:0.4.1-2` container
25+
with Go 1.10 and dep 0.4.1
26+
- etcd pod containers no longer run with a non-root security context by default. This setting can be configured per cluster via the PodPolicy.
27+
2228
## [Release 0.9.1]
2329

2430
### Added

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.1
14+
image: quay.io/coreos/etcd-operator:v0.9.2
1515
command:
1616
- etcd-operator
1717
# Uncomment to act for resources in all namespaces. More information in doc/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.1
14+
image: quay.io/coreos/etcd-operator:v0.9.2
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.1
16+
image: quay.io/coreos/etcd-operator:v0.9.2
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.1+git"
18+
Version = "0.9.2"
1919
GitSHA = "Not provided (use ./build instead of go build)"
2020
)

0 commit comments

Comments
 (0)