Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshakov committed Nov 10, 2016
1 parent e77c5e7 commit 8e4dfa6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

### 0.5.0

* Update NGINX version to 1.11.5.
* [64](https://github.com/nginxinc/kubernetes-ingress/pull/64): Add the `nginx.org/rewrites` annotation, which allows to rewrite the URI of a request before sending it to the application. Thanks to [Julian](https://github.com/jmastr).
* [62](https://github.com/nginxinc/kubernetes-ingress/pull/62): Add the `nginx.org/ssl-services` annotation, which allows load balancing of HTTPS applications. Thanks to [Julian](https://github.com/jmastr).

### 0.4.0

* [54](https://github.com/nginxinc/kubernetes-ingress/pull/54): Previously, when specifying the port of a service in an Ingress rule, you had to use the value of the target port of that port of the service, which was incorrect. Now you must use the port value or the name of the port of the service instead of the target port value. **Note**: Please make necessary changes to your Ingress resources, if ports of your services have different values of the port and the target port fields.
Expand Down
2 changes: 1 addition & 1 deletion examples/complete-example/nginx-ingress-rc.yaml
Expand Up @@ -14,7 +14,7 @@ spec:
app: nginx-ingress
spec:
containers:
- image: nginxdemos/nginx-ingress:0.4.0
- image: nginxdemos/nginx-ingress:0.5.0
imagePullPolicy: Always
name: nginx-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/complete-example/nginx-plus-ingress-rc.yaml
Expand Up @@ -14,7 +14,7 @@ spec:
app: nginx-plus-ingress
spec:
containers:
- image: nginx-plus-ingress:0.4.0
- image: nginx-plus-ingress:0.5.0
imagePullPolicy: Always
name: nginx-plus-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/daemon-set/nginx-ingress.yaml
Expand Up @@ -11,7 +11,7 @@ spec:
# nodeSelector:
# role: nginx-ingress
containers:
- image: nginxdemos/nginx-ingress:0.4.0
- image: nginxdemos/nginx-ingress:0.5.0
imagePullPolicy: Always
name: nginx-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/daemon-set/nginx-plus-ingress.yaml
Expand Up @@ -11,7 +11,7 @@ spec:
# nodeSelector:
# role: nginx-ingress
containers:
- image: nginx-plus-ingress:0.4.0
- image: nginx-plus-ingress:0.5.0
imagePullPolicy: Always
name: nginx-plus-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion nginx-controller/Makefile
@@ -1,6 +1,6 @@
all: push

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

Expand Down
2 changes: 1 addition & 1 deletion nginx-plus-controller/Makefile
@@ -1,6 +1,6 @@
all: push

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

Expand Down

0 comments on commit 8e4dfa6

Please sign in to comment.