Skip to content

Commit f89a9a2

Browse files
committed
Release 1.3.1
1 parent 42614ad commit f89a9a2

16 files changed

+25
-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.1
4+
5+
CHANGES:
6+
* Update NGINX Plus version to R15p2.
7+
8+
UPGRADE:
9+
* For NGINX, use the 1.3.1 image from our DockerHub: `nginx/nginx-ingress:1.3.1` or `nginx/nginx-ingress:1.3.1-alpine`
10+
* For NGINX Plus, please build your own image using the 1.3.1 source code.
11+
312
### 1.3.0
413

514
IMPROVEMENTS:

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.0
18+
- image: nginx/nginx-ingress:1.3.1
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.0
18+
- image: nginx-plus-ingress:1.3.1
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.0
3+
appVersion: 1.3.1
44
description: NGINX Ingress Controller
55
sources:
66
- https://github.com/nginxinc/kubernetes-ingress/tree/master/helm-chart

helm-chart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Parameter | Description | Default
6262
`controller.nginxplus` | Deploys the Ingress controller for NGINX Plus. | false
6363
`controller.hostNetwork` | Enables the Ingress controller pods to use the host's network namespace. | false
6464
`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.0
65+
`controller.image.tag` | The tag of the Ingress controller image. | 1.3.1
6666
`controller.image.pullPolicy` | The pull policy for the Ingress controller image. | IfNotPresent
6767
`controller.config.entries` | The entries of the ConfigMap for customizing NGINX configuration. | { }
6868
`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.0"
8+
tag: "1.3.1"
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.0"
8+
tag: "1.3.1"
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.0"
8+
tag: "1.3.1"
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.0
17+
- image: nginx/nginx-ingress:1.3.1
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.0
20+
- image: nginx-plus-ingress:1.3.1
2121
name: nginx-plus-ingress
2222
ports:
2323
- name: http

0 commit comments

Comments
 (0)