From 17a4624b4b5e93c5ff1df4d8d4d093f66335c184 Mon Sep 17 00:00:00 2001 From: hasbro17 Date: Thu, 12 Apr 2018 11:06:53 -0700 Subject: [PATCH] release: bump version to v0.9.2 and update changelog --- CHANGELOG.md | 20 ++++++++++++------- example/deployment.yaml | 2 +- example/etcd-backup-operator/deployment.yaml | 2 +- example/etcd-restore-operator/deployment.yaml | 2 +- version/version.go | 2 +- 5 files changed, 17 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1b70942a..5c359b6e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,8 @@ ### Added -- 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) - ### Changed -- Update Go version to 1.10 -- Build `gcr.io/coreos-k8s-scale-testing/etcd-operator-builder:0.4.1-2` container - with Go 1.10 and dep 0.4.1 -- etcd pod containers no longer run with a non-root security context by default. This setting can be configured per cluster via the PodPolicy. - ### Removed ### Fixed @@ -19,6 +12,19 @@ ### Security +## [Release 0.9.2] + +### Added + +- 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) + +### Changed + +- Update Go version to 1.10 +- Build `gcr.io/coreos-k8s-scale-testing/etcd-operator-builder:0.4.1-2` container + with Go 1.10 and dep 0.4.1 +- etcd pod containers no longer run with a non-root security context by default. This setting can be configured per cluster via the PodPolicy. + ## [Release 0.9.1] ### Added diff --git a/example/deployment.yaml b/example/deployment.yaml index fca14da03..f355504d1 100644 --- a/example/deployment.yaml +++ b/example/deployment.yaml @@ -11,7 +11,7 @@ spec: spec: containers: - name: etcd-operator - image: quay.io/coreos/etcd-operator:v0.9.1 + image: quay.io/coreos/etcd-operator:v0.9.2 command: - etcd-operator # Uncomment to act for resources in all namespaces. More information in doc/clusterwide.md diff --git a/example/etcd-backup-operator/deployment.yaml b/example/etcd-backup-operator/deployment.yaml index 7d886c048..c7a807a50 100644 --- a/example/etcd-backup-operator/deployment.yaml +++ b/example/etcd-backup-operator/deployment.yaml @@ -11,7 +11,7 @@ spec: spec: containers: - name: etcd-backup-operator - image: quay.io/coreos/etcd-operator:v0.9.1 + image: quay.io/coreos/etcd-operator:v0.9.2 command: - etcd-backup-operator env: diff --git a/example/etcd-restore-operator/deployment.yaml b/example/etcd-restore-operator/deployment.yaml index 810597a97..5955f98e3 100644 --- a/example/etcd-restore-operator/deployment.yaml +++ b/example/etcd-restore-operator/deployment.yaml @@ -13,7 +13,7 @@ spec: spec: containers: - name: etcd-restore-operator - image: quay.io/coreos/etcd-operator:v0.9.1 + image: quay.io/coreos/etcd-operator:v0.9.2 command: - etcd-restore-operator env: diff --git a/version/version.go b/version/version.go index 2f3040486..8b0342034 100644 --- a/version/version.go +++ b/version/version.go @@ -15,6 +15,6 @@ package version var ( - Version = "0.9.1+git" + Version = "0.9.2" GitSHA = "Not provided (use ./build instead of go build)" )