Skip to content

Commit 8e4dfa6

Browse files
committed
Release 0.5.0
1 parent e77c5e7 commit 8e4dfa6

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

Diff for: CHANGELOG.md

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

3+
### 0.5.0
4+
5+
* Update NGINX version to 1.11.5.
6+
* [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).
7+
* [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).
8+
39
### 0.4.0
410

511
* [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.

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

0 commit comments

Comments
 (0)