Skip to content

Commit 560848c

Browse files
committed
Release 0.9.0
1 parent be3973b commit 560848c

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed

Diff for: CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
# Changelog
22

3+
### 0.9.0
4+
5+
* [156](https://github.com/nginxinc/kubernetes-ingress/pull/156): Write a pem file with an SSL certificate and key atomically.
6+
* [155](https://github.com/nginxinc/kubernetes-ingress/pull/155): Remove http2 annotation (http/2 can be enabled globally in the ConfigMap).
7+
* [154](https://github.com/nginxinc/kubernetes-ingress/pull/154): Merge NGINX and NGINX Plus Ingress controller implementations.
8+
* [151](https://github.com/nginxinc/kubernetes-ingress/pull/151): Use k8s.io/client-go.
9+
* [146](https://github.com/nginxinc/kubernetes-ingress/pull/146): Fix health status.
10+
* [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).
11+
* [140](https://github.com/nginxinc/kubernetes-ingress/pull/140): Fix an error message. Thanks to [Andreas Krüger](https://github.com/woopstar).
12+
* Update NGINX to version 1.13.3.
13+
314
### 0.8.1
415

516
* Update NGINX version to 1.13.0.
617

718
### 0.8.0
819

9-
* [117](https://github.com/nginxinc/kubernetes-ingress/pull/117): Add a customization option: location-snippets, server-snippets and http-snippets. Thanks to [rchicoli
10-
](https://github.com/rchicoli).
20+
* [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).
1121
* [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).
1222
* Update NGINX version to 1.11.13.
1323
* Makefile updates: gcloud docker push command; golang container was updated to 1.8.

Diff for: examples/complete-example/nginx-ingress-rc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
app: nginx-ingress
1515
spec:
1616
containers:
17-
- image: nginxdemos/nginx-ingress:0.8.1
17+
- image: nginxdemos/nginx-ingress:0.9.0
1818
imagePullPolicy: Always
1919
name: nginx-ingress
2020
ports:

Diff for: examples/complete-example/nginx-plus-ingress-rc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
app: nginx-plus-ingress
1515
spec:
1616
containers:
17-
- image: nginx-plus-ingress:0.8.1
17+
- image: nginx-plus-ingress:0.9.0
1818
imagePullPolicy: Always
1919
name: nginx-plus-ingress
2020
ports:

Diff for: examples/daemon-set/nginx-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
# nodeSelector:
1212
# role: nginx-ingress
1313
containers:
14-
- image: nginxdemos/nginx-ingress:0.8.1
14+
- image: nginxdemos/nginx-ingress:0.9.0
1515
imagePullPolicy: Always
1616
name: nginx-ingress
1717
ports:

Diff for: examples/daemon-set/nginx-plus-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
# nodeSelector:
1212
# role: nginx-ingress
1313
containers:
14-
- image: nginx-plus-ingress:0.8.1
14+
- image: nginx-plus-ingress:0.9.0
1515
imagePullPolicy: Always
1616
name: nginx-plus-ingress
1717
ports:

Diff for: nginx-controller/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all: push
22

3-
VERSION = 0.8.1
3+
VERSION = 0.9.0
44
TAG = $(VERSION)
55
PREFIX = nginxdemos/nginx-ingress
66

0 commit comments

Comments
 (0)