Skip to content

Commit 43e537d

Browse files
committed
Release 1.2.0
1 parent 38798e9 commit 43e537d

14 files changed

+43
-14
lines changed

Diff for: CHANGELOG.md

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

3+
### 1.2.0
4+
5+
* [279](https://github.com/nginxinc/kubernetes-ingress/pull/279): Update dependencies.
6+
* [278](https://github.com/nginxinc/kubernetes-ingress/pull/278): Fix mergeable Ingress types.
7+
* [277](https://github.com/nginxinc/kubernetes-ingress/pull/277): Support grpc error responses.
8+
* [276](https://github.com/nginxinc/kubernetes-ingress/pull/276): Add gRPC support.
9+
* [274](https://github.com/nginxinc/kubernetes-ingress/pull/274): Change the default load balancing method to least_conn.
10+
* [272](https://github.com/nginxinc/kubernetes-ingress/pull/272): Move nginx-ingress image to the official nginx DockerHub.
11+
* [268](https://github.com/nginxinc/kubernetes-ingress/pull/268): Correct Mergeable Types misspelling and optimize blacklists. Thanks to [Fernando Diaz](https://github.com/diazjf).
12+
* [266](https://github.com/nginxinc/kubernetes-ingress/pull/266): Add support for passive health checks.
13+
* [261](https://github.com/nginxinc/kubernetes-ingress/pull/261): Update Customization Example.
14+
* [258](https://github.com/nginxinc/kubernetes-ingress/pull/258): Handle annotations and conflicting paths for MergeableTypes. Thanks to [Fernando Diaz](https://github.com/diazjf).
15+
* [256](https://github.com/nginxinc/kubernetes-ingress/pull/256): Add helm chart support.
16+
* [249](https://github.com/nginxinc/kubernetes-ingress/pull/249): Add support for prometheus for Plus.
17+
* [241](https://github.com/nginxinc/kubernetes-ingress/pull/241): Update the doc about building the Docker image.
18+
* [240](https://github.com/nginxinc/kubernetes-ingress/pull/240): Use new NGINX Plus API.
19+
* [239](https://github.com/nginxinc/kubernetes-ingress/pull/239): Fix a typo in a variable name. Thanks to [Tony Li](https://github.com/mysterytony).
20+
* [238](https://github.com/nginxinc/kubernetes-ingress/pull/238): Remove apt-get upgrade from Plus Dockerfile.
21+
* [237](https://github.com/nginxinc/kubernetes-ingress/pull/237): Add unit test for ingress-class handling.
22+
* [236](https://github.com/nginxinc/kubernetes-ingress/pull/236): Always respect `-ingress-class` option. Thanks to [Nick Novitski](https://github.com/nicknovitski).
23+
* [235](https://github.com/nginxinc/kubernetes-ingress/pull/235): Change the base image to Debian Stretch for Plus controller.
24+
* [234](https://github.com/nginxinc/kubernetes-ingress/pull/234): Update installation manifests and instructions.
25+
* [233](https://github.com/nginxinc/kubernetes-ingress/pull/233): Add docker build options to Makefile.
26+
* [231](https://github.com/nginxinc/kubernetes-ingress/pull/231): Prevent a possible failure of building Plus image.
27+
* Documentation Fixes: [248](https://github.com/nginxinc/kubernetes-ingress/pull/248), thanks to [zariye](https://github.com/zariye). [252](https://github.com/nginxinc/kubernetes-ingress/pull/252). [270](https://github.com/nginxinc/kubernetes-ingress/pull/270).
28+
* Update NGINX version to 1.13.12.
29+
* Update NGINX Plus version to R15 P1.
30+
31+
332
### 1.1.1
433

534
* [228](https://github.com/nginxinc/kubernetes-ingress/pull/228): Add worker-rlimit-nofile configmap key. Thanks to [Aleksandr Lysenko](https://github.com/Sarga).

Diff for: examples/openshift/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: nginx/nginx-ingress:1.1.1
18+
- image: nginx/nginx-ingress:1.2.0
1919
imagePullPolicy: Always
2020
name: nginx-ingress
2121
ports:

Diff for: examples/openshift/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.0.0
18+
- image: nginx-plus-ingress:1.2.0
1919
# imagePullPolicy: Always
2020
name: nginx-plus-ingress
2121
ports:

Diff for: helm-chart/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Parameter | Description | Default
5050
`controller.nginxplus` | Should NGINX Plus be deployed. | false
5151
`controller.hostNetwork` | If the nginx deployment / daemonset should run on the host's network namespace. | false
5252
`controller.image.repository` | The image repository of the Ingress controller. | nginx/nginx-ingress
53-
`controller.image.tag` | The tag of the Ingress controller image. | 1.1.1
53+
`controller.image.tag` | The tag of the Ingress controller image. | 1.2.0
5454
`controller.image.pullPolicy` | The pull policy for the Ingress controller image. | IfNotPresent
5555
`controller.config.entries` | The entries of the ConfigMap for customizing NGINX configuration. | { }
5656
`controller.defaultTLS.cert` | The TLS certificate for the default HTTPS server. | None

Diff for: helm-chart/values-icp.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ controller:
55
hostNetwork: "false"
66
image:
77
repository: mycluster.icp:8500/kube-system/nginx-plus-ingress
8-
tag: "1.1.1"
8+
tag: "1.2.0"
99
pullPolicy: IfNotPresent
1010
defaultTLS:
1111
cert:

Diff for: helm-chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ controller:
55
hostNetwork: "false"
66
image:
77
repository: nginx/nginx-ingress
8-
tag: "1.1.1"
8+
tag: "1.2.0"
99
pullPolicy: IfNotPresent
1010
config:
1111
entries: {}

Diff for: install/daemon-set/nginx-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
spec:
1515
serviceAccountName: nginx-ingress
1616
containers:
17-
- image: nginx/nginx-ingress:1.1.1
17+
- image: nginx/nginx-ingress:1.2.0
1818
name: nginx-ingress
1919
ports:
2020
- name: http

Diff for: install/daemon-set/nginx-plus-ingress-with-prometheus.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
serviceAccountName: nginx-ingress
1919
containers:
20-
- image: nginx-plus-ingress:1.1.1
20+
- image: nginx-plus-ingress:1.2.0
2121
name: nginx-plus-ingress
2222
ports:
2323
- name: http

Diff for: install/daemon-set/nginx-plus-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
spec:
1515
serviceAccountName: nginx-ingress
1616
containers:
17-
- image: nginx-plus-ingress:1.1.1
17+
- image: nginx-plus-ingress:1.2.0
1818
name: nginx-plus-ingress
1919
ports:
2020
- name: http

Diff for: install/deployment/nginx-ingress.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/nginx-ingress:1.1.1
18+
- image: nginx/nginx-ingress:1.2.0
1919
name: nginx-ingress
2020
ports:
2121
- name: http

Diff for: install/deployment/nginx-plus-ingress-with-prometheus.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
spec:
1919
serviceAccountName: nginx-ingress
2020
containers:
21-
- image: nginx-plus-ingress:1.1.1
21+
- image: nginx-plus-ingress:1.2.0
2222
name: nginx-plus-ingress
2323
ports:
2424
- name: http

Diff for: install/deployment/nginx-plus-ingress.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.1
18+
- image: nginx-plus-ingress:1.2.0
1919
name: nginx-plus-ingress
2020
ports:
2121
- name: http

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 = 1.1.1
3+
VERSION = 1.2.0
44
TAG = $(VERSION)
55
PREFIX = nginx/nginx-ingress
66

Diff for: nginx-controller/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
4141
```
4242
`myregistry.example.com/nginx-ingress` defines the repo in your private registry where the image will be pushed. Substitute that value with the repo in your private registry.
4343
44-
As the result, the image **myregistry.example.com/nginx-ingress:1.1.1** is built and pushed to the registry. Note that the tag `1.1.1` comes from the `VERSION` variable, defined in the Makefile.
44+
As the result, the image **myregistry.example.com/nginx-ingress:1.2.0** is built and pushed to the registry. Note that the tag `1.2.0` comes from the `VERSION` variable, defined in the Makefile.
4545
4646
* For NGINX Plus, first, make sure that the certificate (`nginx-repo.crt`) and the key (`nginx-repo.key`) of your license are located in the `nginx-controller` folder:
4747
```
@@ -55,7 +55,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
5555
```
5656
`myregistry.example.com/nginx-plus-ingress` defines the repo in your private registry where the image will be pushed. Substitute that value with the repo in your private registry.
5757
58-
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.1.1** is built and pushed to the registry. Note that the tag `1.1.1` comes from the `VERSION` variable, defined in the Makefile.
58+
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.2.0** is built and pushed to the registry. Note that the tag `1.2.0` comes from the `VERSION` variable, defined in the Makefile.
5959
6060
Next you will find the details about available Makefile targets and variables.
6161

0 commit comments

Comments
 (0)