Skip to content

Commit a2f2f83

Browse files
committed
Release 0.8.0
1 parent db46369 commit a2f2f83

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

Diff for: CHANGELOG.md

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

3+
### 0.8.0
4+
5+
* [117](https://github.com/nginxinc/kubernetes-ingress/pull/117): Add a customization option: location-snippets, server-snippets and http-snippets. Thanks to [rchicoli
6+
](https://github.com/rchicoli).
7+
* [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).
8+
* Update NGINX version to 1.11.13.
9+
* Makefile updates: gcloud docker push command; golang container was updated to 1.8.
10+
* Documentation fixes: [113](https://github.com/nginxinc/kubernetes-ingress/pull/113). Thanks to [Linus Lewandowski](https://github.com/LEW21).
11+
312
### 0.7.0
413

514
* [108](https://github.com/nginxinc/kubernetes-ingress/pull/108): Support for the `server_tokens` directive via the annotation and in the configmap. Thanks to [David Radcliffe](https://github.com/dwradcliffe).

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

0 commit comments

Comments
 (0)