Skip to content

Commit 88d3617

Browse files
committed
Release 1.4.3
1 parent e387736 commit 88d3617

19 files changed

+31
-22
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
### 1.4.3
4+
5+
CHANGES:
6+
* Update NGINX version to 1.15.8.
7+
8+
UPGRADE:
9+
* For NGINX, use the 1.4.3 image from our DockerHub: `nginx/nginx-ingress:1.4.3` or `nginx/nginx-ingress:1.4.3-alpine`
10+
* For NGINX Plus, please build your own image using the 1.4.3 source code.
11+
312
### 1.4.2
413

514
CHANGES:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all: push
22

3-
VERSION = 1.4.2
3+
VERSION = 1.4.3
44
TAG = $(VERSION)
55
PREFIX = nginx/nginx-ingress
66

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Read [this doc](docs/nginx-plus.md) to learn more about NGINX Ingress controller
4545

4646
We publish Ingress controller releases on GitHub. See our [releases page](https://github.com/nginxinc/kubernetes-ingress/releases).
4747

48-
The latest stable release is [1.4.2](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v1.4.2). For production use, we recommend that you choose the latest stable release. As an alternative, you can choose the *edge* version built from the [latest commit](https://github.com/nginxinc/kubernetes-ingress/commits/master) from the master branch. The edge version is useful for experimenting with new features that are not yet published in a stable release.
48+
The latest stable release is [1.4.3](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v1.4.3). For production use, we recommend that you choose the latest stable release. As an alternative, you can choose the *edge* version built from the [latest commit](https://github.com/nginxinc/kubernetes-ingress/commits/master) from the master branch. The edge version is useful for experimenting with new features that are not yet published in a stable release.
4949

5050
To use the Ingress controller, you need to have access to:
5151
* An Ingress controller image.
@@ -58,7 +58,7 @@ The table below summarizes the options regarding the images, manifests, helm cha
5858

5959
| Version | Description | Image for NGINX | Image for NGINX Plus | Installation Manifests and Helm Chart | Documentation and Examples |
6060
| ------- | ----------- | --------------- | -------------------- | ---------------------------------------| -------------------------- |
61-
| Latest stable release | For production use | `nginx/nginx-ingress:1.4.2`, `nginx/nginx-ingress:1.4.2-alpine` from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/) or [build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.2/build). | [Build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.2/build). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.2/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.2/deployments/helm-chart). | [Documentation](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.2/docs). [Examples](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.2/examples). |
61+
| Latest stable release | For production use | `nginx/nginx-ingress:1.4.3`, `nginx/nginx-ingress:1.4.3-alpine` from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/) or [build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.3/build). | [Build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.3/build). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.3/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.3/deployments/helm-chart). | [Documentation](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.3/docs). [Examples](https://github.com/nginxinc/kubernetes-ingress/tree/v1.4.3/examples). |
6262
| Edge | For testing and experimenting | `nginx/nginx-ingress:edge`, `nginx/nginx-ingress:edge-alpine` from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/) or [build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/master/build). | [Build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/master/build). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/master/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/master/deployments/helm-chart). | [Documentation](https://github.com/nginxinc/kubernetes-ingress/tree/master/docs). [Examples](https://github.com/nginxinc/kubernetes-ingress/tree/master/examples). |
6363

6464
## Contacts

build/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
3030
1. Clone the Ingress controller repo:
3131
```
3232
$ git clone https://github.com/nginxinc/kubernetes-ingress/
33-
$ git checkout v1.4.2
33+
$ git checkout v1.4.3
3434
```
3535
3636
1. Build the image:
@@ -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.4.2** is built and pushed to the registry. Note that the tag `1.4.2` comes from the `VERSION` variable, defined in the Makefile.
44+
As the result, the image **myregistry.example.com/nginx-ingress:1.4.3** is built and pushed to the registry. Note that the tag `1.4.3` 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 root of the project:
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.4.2** is built and pushed to the registry. Note that the tag `1.4.2` comes from the `VERSION` variable, defined in the Makefile.
58+
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.4.3** is built and pushed to the registry. Note that the tag `1.4.3` comes from the `VERSION` variable, defined in the Makefile.
5959
6060
Next you will find the details about available Makefile targets and variables.
6161

deployments/daemon-set/nginx-ingress-with-prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
serviceAccountName: nginx-ingress
1919
containers:
20-
- image: nginx/nginx-ingress:1.4.2
20+
- image: nginx/nginx-ingress:1.4.3
2121
name: nginx-ingress
2222
ports:
2323
- name: http

deployments/daemon-set/nginx-ingress.yaml

Lines changed: 1 addition & 1 deletion
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.4.2
17+
- image: nginx/nginx-ingress:1.4.3
1818
name: nginx-ingress
1919
ports:
2020
- name: http

deployments/daemon-set/nginx-plus-ingress-with-prometheus.yaml

Lines changed: 1 addition & 1 deletion
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.4.2
20+
- image: nginx-plus-ingress:1.4.3
2121
name: nginx-plus-ingress
2222
ports:
2323
- name: http

deployments/daemon-set/nginx-plus-ingress.yaml

Lines changed: 1 addition & 1 deletion
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.4.2
17+
- image: nginx-plus-ingress:1.4.3
1818
name: nginx-plus-ingress
1919
ports:
2020
- name: http

deployments/deployment/nginx-ingress-with-prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
spec:
1919
serviceAccountName: nginx-ingress
2020
containers:
21-
- image: nginx/nginx-ingress:1.4.2
21+
- image: nginx/nginx-ingress:1.4.3
2222
name: nginx-ingress
2323
ports:
2424
- name: http

deployments/deployment/nginx-ingress.yaml

Lines changed: 1 addition & 1 deletion
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.4.2
18+
- image: nginx/nginx-ingress:1.4.3
1919
name: nginx-ingress
2020
ports:
2121
- name: http

0 commit comments

Comments
 (0)