Skip to content

Commit aae5f14

Browse files
committed
Release 1.3.2
1 parent f18eae1 commit aae5f14

16 files changed

+27
-16
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.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:

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

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

helm-chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
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

helm-chart/README.md

Lines changed: 2 additions & 1 deletion
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.

helm-chart/values-icp.yaml

Lines changed: 1 addition & 1 deletion
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:

helm-chart/values-plus.yaml

Lines changed: 1 addition & 1 deletion
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:

helm-chart/values.yaml

Lines changed: 1 addition & 1 deletion
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: {}

install/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.3.1
17+
- image: nginx/nginx-ingress:1.3.2
1818
name: nginx-ingress
1919
ports:
2020
- name: http

install/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.3.1
20+
- image: nginx-plus-ingress:1.3.2
2121
name: nginx-plus-ingress
2222
ports:
2323
- name: http

0 commit comments

Comments
 (0)