Skip to content

Commit 8fc772d

Browse files
committed
Release 1.1.1
1 parent c747419 commit 8fc772d

8 files changed

+13
-7
lines changed

CHANGELOG.md

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

3+
### 1.1.1
4+
5+
* [228](https://github.com/nginxinc/kubernetes-ingress/pull/228): Add worker-rlimit-nofile configmap key. Thanks to [Aleksandr Lysenko](https://github.com/Sarga).
6+
* [223](https://github.com/nginxinc/kubernetes-ingress/pull/223): Add worker-connections configmap key. Thanks to [Aleksandr Lysenko](https://github.com/Sarga).
7+
* Update NGINX version to 1.13.8.
8+
39
### 1.1.0
410

511
* [221](https://github.com/nginxinc/kubernetes-ingress/pull/221): Add git commit info to the IC log.

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:1.1.0
17+
- image: nginxdemos/nginx-ingress:1.1.1
1818
imagePullPolicy: Always
1919
name: nginx-ingress
2020
ports:

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:1.1.0
17+
- image: nginx-plus-ingress:1.1.1
1818
imagePullPolicy: Always
1919
name: nginx-plus-ingress
2020
ports:

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:1.1.0
14+
- image: nginxdemos/nginx-ingress:1.1.1
1515
imagePullPolicy: Always
1616
name: nginx-ingress
1717
ports:

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:1.1.0
14+
- image: nginx-plus-ingress:1.1.1
1515
imagePullPolicy: Always
1616
name: nginx-plus-ingress
1717
ports:

examples/rbac/nginx-ingress-rc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
serviceAccountName: nginx-ingress
1717
containers:
18-
- image: nginxdemos/nginx-ingress:1.1.0
18+
- image: nginxdemos/nginx-ingress:1.1.1
1919
imagePullPolicy: Always
2020
name: nginx-ingress
2121
ports:

examples/rbac/nginx-plus-ingress-rc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
serviceAccountName: nginx-ingress
1717
containers:
18-
- image: nginx-plus-ingress:1.1.0
18+
- image: nginx-plus-ingress:1.1.1
1919
imagePullPolicy: Always
2020
name: nginx-plus-ingress
2121
ports:

nginx-controller/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all: push
22

3-
VERSION = 1.1.0
3+
VERSION = 1.1.1
44
TAG = $(VERSION)
55
PREFIX = nginxdemos/nginx-ingress
66

0 commit comments

Comments
 (0)