Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshakov committed Dec 20, 2017
1 parent 29918c7 commit 9eda836
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,21 @@
# Changelog

### 1.1.0

* [221](https://github.com/nginxinc/kubernetes-ingress/pull/221): Add git commit info to the IC log.
* [220](https://github.com/nginxinc/kubernetes-ingress/pull/220): Update dependencies.
* [213](https://github.com/nginxinc/kubernetes-ingress/pull/213): Add main snippets to allow Main context customization. Thanks to [Dewen Kong](https://github.com/kongdewen).
* [211](https://github.com/nginxinc/kubernetes-ingress/pull/211): Minimize the number of configuration reloads when the Ingress controller starts; fix a problem with endpoints updates for Plus.
* [208](https://github.com/nginxinc/kubernetes-ingress/pull/208): Add worker-shutdown-timeout configmap key. Thanks to [Aleksandr Lysenko](https://github.com/Sarga).
* [199](https://github.com/nginxinc/kubernetes-ingress/pull/199): Add support for Kubernetes ssl-redirect annotation. Thanks to [Luke Seelenbinder](https://github.com/lseelenbinder).
* [194](https://github.com/nginxinc/kubernetes-ingress/pull/194) Add keepalive configmap key and annotation.
* [193](https://github.com/nginxinc/kubernetes-ingress/pull/193): Add worker-cpu-affinity configmap key.
* [192](https://github.com/nginxinc/kubernetes-ingress/pull/192): Add worker-processes configmap key.
* [186](https://github.com/nginxinc/kubernetes-ingress/pull/186): Fix hardcoded controller class. Thanks to [Serhii M](https://github.com/SiriusRed).
* [184](https://github.com/nginxinc/kubernetes-ingress/pull/184): Return a meaningful error when there is no cert and key for the default server.
* Update NGINX version to 1.13.7.
* Makefile updates: golang container was updated to 1.9.

### 1.0.0

* [175](https://github.com/nginxinc/kubernetes-ingress/pull/175): Add support for JWT for NGINX Plus.
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:1.0.0
- image: nginxdemos/nginx-ingress:1.1.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:1.0.0
- image: nginx-plus-ingress:1.1.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:1.0.0
- image: nginxdemos/nginx-ingress:1.1.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:1.0.0
- image: nginx-plus-ingress:1.1.0
imagePullPolicy: Always
name: nginx-plus-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/rbac/nginx-ingress-rc.yaml
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginxdemos/nginx-ingress:1.0.0
- image: nginxdemos/nginx-ingress:1.1.0
imagePullPolicy: Always
name: nginx-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/rbac/nginx-plus-ingress-rc.yaml
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx-plus-ingress:1.0.0
- image: nginx-plus-ingress:1.1.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 = 1.0.0
VERSION = 1.1.0
TAG = $(VERSION)
PREFIX = nginxdemos/nginx-ingress

Expand Down

0 comments on commit 9eda836

Please sign in to comment.