Skip to content

Commit 3840597

Browse files
committed
Release 0.6.0
1 parent fa7a201 commit 3840597

File tree

7 files changed

+16
-6
lines changed

7 files changed

+16
-6
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
### 0.6.0
4+
5+
* [75](https://github.com/nginxinc/kubernetes-ingress/pull/75): Add the HSTS settings in the configmap and annotations. Thanks to [Nico Schieder](https://github.com/thetechnick).
6+
* [74](https://github.com/nginxinc/kubernetes-ingress/pull/74): Fix the issue of the `kubernetes.io/ingress.class` annotation handling. Thanks to [Tang Le](https://github.com/tangle329).
7+
* [70](https://github.com/nginxinc/kubernetes-ingress/pull/70): Add support for the alpine-based image for the NGINX controller.
8+
* [68](https://github.com/nginxinc/kubernetes-ingress/pull/68): Support for proxy-buffering settings in the configmap and annotations. Thanks to [Mark Daniel Reidel](https://github.com/df-mreidel).
9+
* [66](https://github.com/nginxinc/kubernetes-ingress/pull/66): Support for custom log-format in the configmap. Thanks to [Mark Daniel Reidel](https://github.com/df-mreidel).
10+
* [65](https://github.com/nginxinc/kubernetes-ingress/pull/65): Add HTTP/2 as an option in the configmap and annotations. Thanks to [Nico Schieder](https://github.com/thetechnick).
11+
* The NGINX Plus controller image is now based on Ubuntu Xenial.
12+
313
### 0.5.0
414

515
* Update NGINX version to 1.11.5.

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.5.0
17+
- image: nginxdemos/nginx-ingress:0.6.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.5.0
17+
- image: nginx-plus-ingress:0.6.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.5.0
14+
- image: nginxdemos/nginx-ingress:0.6.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.5.0
14+
- image: nginx-plus-ingress:0.6.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.5.0
3+
VERSION = 0.6.0
44
TAG = $(VERSION)
55
PREFIX = nginxdemos/nginx-ingress
66

Diff for: nginx-plus-controller/Makefile

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

3-
VERSION = 0.5.0
3+
VERSION = 0.6.0
44
TAG = $(VERSION)
55
PREFIX =
66

0 commit comments

Comments
 (0)