Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshakov committed Nov 24, 2016
1 parent fa7a201 commit 3840597
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

### 0.6.0

* [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).
* [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).
* [70](https://github.com/nginxinc/kubernetes-ingress/pull/70): Add support for the alpine-based image for the NGINX controller.
* [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).
* [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).
* [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).
* The NGINX Plus controller image is now based on Ubuntu Xenial.

### 0.5.0

* Update NGINX version to 1.11.5.
Expand Down
2 changes: 1 addition & 1 deletion examples/complete-example/nginx-ingress-rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
app: nginx-ingress
spec:
containers:
- image: nginxdemos/nginx-ingress:0.5.0
- image: nginxdemos/nginx-ingress:0.6.0
imagePullPolicy: Always
name: nginx-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/complete-example/nginx-plus-ingress-rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
app: nginx-plus-ingress
spec:
containers:
- image: nginx-plus-ingress:0.5.0
- image: nginx-plus-ingress:0.6.0
imagePullPolicy: Always
name: nginx-plus-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/daemon-set/nginx-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
# nodeSelector:
# role: nginx-ingress
containers:
- image: nginxdemos/nginx-ingress:0.5.0
- image: nginxdemos/nginx-ingress:0.6.0
imagePullPolicy: Always
name: nginx-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/daemon-set/nginx-plus-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
# nodeSelector:
# role: nginx-ingress
containers:
- image: nginx-plus-ingress:0.5.0
- image: nginx-plus-ingress:0.6.0
imagePullPolicy: Always
name: nginx-plus-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion nginx-controller/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
all: push

VERSION = 0.5.0
VERSION = 0.6.0
TAG = $(VERSION)
PREFIX = nginxdemos/nginx-ingress

Expand Down
2 changes: 1 addition & 1 deletion nginx-plus-controller/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
all: push

VERSION = 0.5.0
VERSION = 0.6.0
TAG = $(VERSION)
PREFIX =

Expand Down

0 comments on commit 3840597

Please sign in to comment.