From 560848c206f33f0c06673c68de8513315030eb27 Mon Sep 17 00:00:00 2001 From: Michael Pleshakov Date: Thu, 13 Jul 2017 16:14:24 +0100 Subject: [PATCH] Release 0.9.0 --- CHANGELOG.md | 14 ++++++++++++-- examples/complete-example/nginx-ingress-rc.yaml | 2 +- .../complete-example/nginx-plus-ingress-rc.yaml | 2 +- examples/daemon-set/nginx-ingress.yaml | 2 +- examples/daemon-set/nginx-plus-ingress.yaml | 2 +- nginx-controller/Makefile | 2 +- 6 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e16cb7c13e..5a5678c152 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,23 @@ # Changelog +### 0.9.0 + +* [156](https://github.com/nginxinc/kubernetes-ingress/pull/156): Write a pem file with an SSL certificate and key atomically. +* [155](https://github.com/nginxinc/kubernetes-ingress/pull/155): Remove http2 annotation (http/2 can be enabled globally in the ConfigMap). +* [154](https://github.com/nginxinc/kubernetes-ingress/pull/154): Merge NGINX and NGINX Plus Ingress controller implementations. +* [151](https://github.com/nginxinc/kubernetes-ingress/pull/151): Use k8s.io/client-go. +* [146](https://github.com/nginxinc/kubernetes-ingress/pull/146): Fix health status. +* [141](https://github.com/nginxinc/kubernetes-ingress/pull/141): Set `worker_processes` to `auto` in NGINX configuration. Thanks to [Andreas Krüger](https://github.com/woopstar). +* [140](https://github.com/nginxinc/kubernetes-ingress/pull/140): Fix an error message. Thanks to [Andreas Krüger](https://github.com/woopstar). +* Update NGINX to version 1.13.3. + ### 0.8.1 * Update NGINX version to 1.13.0. ### 0.8.0 -* [117](https://github.com/nginxinc/kubernetes-ingress/pull/117): Add a customization option: location-snippets, server-snippets and http-snippets. Thanks to [rchicoli -](https://github.com/rchicoli). +* [117](https://github.com/nginxinc/kubernetes-ingress/pull/117): Add a customization option: location-snippets, server-snippets and http-snippets. Thanks to [rchicoli](https://github.com/rchicoli). * [116](https://github.com/nginxinc/kubernetes-ingress/pull/116): Add support for the 301 redirect to https based on the `http_x_forwarded_proto` header. Thanks to [Chris](https://github.com/cwhenderson20). * Update NGINX version to 1.11.13. * Makefile updates: gcloud docker push command; golang container was updated to 1.8. diff --git a/examples/complete-example/nginx-ingress-rc.yaml b/examples/complete-example/nginx-ingress-rc.yaml index 8dd7ff9688..820b1ce4f3 100644 --- a/examples/complete-example/nginx-ingress-rc.yaml +++ b/examples/complete-example/nginx-ingress-rc.yaml @@ -14,7 +14,7 @@ spec: app: nginx-ingress spec: containers: - - image: nginxdemos/nginx-ingress:0.8.1 + - image: nginxdemos/nginx-ingress:0.9.0 imagePullPolicy: Always name: nginx-ingress ports: diff --git a/examples/complete-example/nginx-plus-ingress-rc.yaml b/examples/complete-example/nginx-plus-ingress-rc.yaml index a2377b912e..cbd740e816 100644 --- a/examples/complete-example/nginx-plus-ingress-rc.yaml +++ b/examples/complete-example/nginx-plus-ingress-rc.yaml @@ -14,7 +14,7 @@ spec: app: nginx-plus-ingress spec: containers: - - image: nginx-plus-ingress:0.8.1 + - image: nginx-plus-ingress:0.9.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/examples/daemon-set/nginx-ingress.yaml b/examples/daemon-set/nginx-ingress.yaml index d510fb2ce5..e18f654b93 100644 --- a/examples/daemon-set/nginx-ingress.yaml +++ b/examples/daemon-set/nginx-ingress.yaml @@ -11,7 +11,7 @@ spec: # nodeSelector: # role: nginx-ingress containers: - - image: nginxdemos/nginx-ingress:0.8.1 + - image: nginxdemos/nginx-ingress:0.9.0 imagePullPolicy: Always name: nginx-ingress ports: diff --git a/examples/daemon-set/nginx-plus-ingress.yaml b/examples/daemon-set/nginx-plus-ingress.yaml index 87f7a8bc35..b3e1ae9457 100644 --- a/examples/daemon-set/nginx-plus-ingress.yaml +++ b/examples/daemon-set/nginx-plus-ingress.yaml @@ -11,7 +11,7 @@ spec: # nodeSelector: # role: nginx-ingress containers: - - image: nginx-plus-ingress:0.8.1 + - image: nginx-plus-ingress:0.9.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/nginx-controller/Makefile b/nginx-controller/Makefile index ac46d85fbd..6fee60c071 100644 --- a/nginx-controller/Makefile +++ b/nginx-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.8.1 +VERSION = 0.9.0 TAG = $(VERSION) PREFIX = nginxdemos/nginx-ingress