Skip to content

Commit aae5f14

Browse files
committed
Release 1.3.2
1 parent f18eae1 commit aae5f14

16 files changed

+27
-16
lines changed

Diff for: CHANGELOG.md

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

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

514
CHANGES:

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.3.1
18+
- image: nginx/nginx-ingress:1.3.2
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.3.1
18+
- image: nginx-plus-ingress:1.3.2
1919
# imagePullPolicy: Always
2020
name: nginx-plus-ingress
2121
ports:

Diff for: helm-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: nginx-ingress
22
version: 0.1.1
3-
appVersion: 1.3.1
3+
appVersion: 1.3.2
44
description: NGINX Ingress Controller
55
sources:
66
- https://github.com/nginxinc/kubernetes-ingress/tree/master/helm-chart

Diff for: helm-chart/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ This chart deploys the NGINX Ingress controller in your Kubernetes cluster.
1818
1. Clone the Ingress controller repo:
1919
```
2020
$ git clone [email protected]:nginxinc/kubernetes-ingress.git
21+
$ git checkout v1.3.2
2122
```
2223
2. Change your working directory to /helm-chart:
2324
```
@@ -62,7 +63,7 @@ Parameter | Description | Default
6263
`controller.nginxplus` | Deploys the Ingress controller for NGINX Plus. | false
6364
`controller.hostNetwork` | Enables the Ingress controller pods to use the host's network namespace. | false
6465
`controller.image.repository` | The image repository of the Ingress controller. | nginx/nginx-ingress
65-
`controller.image.tag` | The tag of the Ingress controller image. | 1.3.1
66+
`controller.image.tag` | The tag of the Ingress controller image. | 1.3.2
6667
`controller.image.pullPolicy` | The pull policy for the Ingress controller image. | IfNotPresent
6768
`controller.config.entries` | The entries of the ConfigMap for customizing NGINX configuration. | { }
6869
`controller.defaultTLS.cert` | The base64-encoded TLS certificate for the default HTTPS server. If not specified, a pre-generated self-signed certificate is used. **Note:** It is recommended that you specify your own certificate. | A pre-generated self-signed certificate.

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.3.1"
8+
tag: "1.3.2"
99
pullPolicy: IfNotPresent
1010
# It is recommended to use your own TLS certificate and key
1111
defaultTLS:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ controller:
55
hostNetwork: false
66
image:
77
repository: nginx-plus-ingress
8-
tag: "1.3.1"
8+
tag: "1.3.2"
99
pullPolicy: IfNotPresent
1010
# It is recommended to use your own TLS certificate and key
1111
defaultTLS:

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.3.1"
8+
tag: "1.3.2"
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.3.1
17+
- image: nginx/nginx-ingress:1.3.2
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.3.1
20+
- image: nginx-plus-ingress:1.3.2
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.3.1
17+
- image: nginx-plus-ingress:1.3.2
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.3.1
18+
- image: nginx/nginx-ingress:1.3.2
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.3.1
21+
- image: nginx-plus-ingress:1.3.2
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.3.1
18+
- image: nginx-plus-ingress:1.3.2
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.3.1
3+
VERSION = 1.3.2
44
TAG = $(VERSION)
55
PREFIX = nginx/nginx-ingress
66

Diff for: nginx-controller/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
3030
1. Clone the Ingress controller repo and change your folder to `nginx-controller`:
3131
```
3232
$ git clone https://github.com/nginxinc/kubernetes-ingress/
33+
$ git checkout v1.3.2
3334
$ cd kubernetes-ingress/nginx-controller
3435
```
3536
@@ -41,7 +42,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
4142
```
4243
`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.
4344
44-
As the result, the image **myregistry.example.com/nginx-ingress:1.3.1** is built and pushed to the registry. Note that the tag `1.3.1` comes from the `VERSION` variable, defined in the Makefile.
45+
As the result, the image **myregistry.example.com/nginx-ingress:1.3.2** is built and pushed to the registry. Note that the tag `1.3.2` comes from the `VERSION` variable, defined in the Makefile.
4546
4647
* 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:
4748
```
@@ -55,7 +56,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
5556
```
5657
`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.
5758
58-
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.3.1** is built and pushed to the registry. Note that the tag `1.3.1` comes from the `VERSION` variable, defined in the Makefile.
59+
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.3.2** is built and pushed to the registry. Note that the tag `1.3.2` comes from the `VERSION` variable, defined in the Makefile.
5960
6061
Next you will find the details about available Makefile targets and variables.
6162

0 commit comments

Comments
 (0)