Skip to content

Commit b8acd63

Browse files
committed
Release 1.3.0
1 parent 0c85428 commit b8acd63

16 files changed

+46
-17
lines changed

CHANGELOG.md

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

3+
### 1.3.0
4+
5+
IMPROVEMENTS:
6+
* [325](https://github.com/nginxinc/kubernetes-ingress/pull/325): Report ingress status.
7+
* [311](https://github.com/nginxinc/kubernetes-ingress/pull/311): Support JWT auth in mergeable minions.
8+
* [310](https://github.com/nginxinc/kubernetes-ingress/pull/310): NGINX configuration template custom path support.
9+
* [308](https://github.com/nginxinc/kubernetes-ingress/pull/308): Add prometheus exporter support to helm chart.
10+
* [303](https://github.com/nginxinc/kubernetes-ingress/pull/303): Add fetch custom NGINX template from ConfigMap.
11+
* [301](https://github.com/nginxinc/kubernetes-ingress/pull/301): Update prometheus exporter image for Plus.
12+
* [298](https://github.com/nginxinc/kubernetes-ingress/pull/298): Prefetch ConfigMap before initial NGINX Config generation.
13+
* [296](https://github.com/nginxinc/kubernetes-ingress/pull/296): Improve Helm Chart.
14+
* [295](https://github.com/nginxinc/kubernetes-ingress/pull/295): Report version information.
15+
* [294](https://github.com/nginxinc/kubernetes-ingress/pull/294): Support dynamic reconfiguration in mergeable ingresses for Plus.
16+
* [287](https://github.com/nginxinc/kubernetes-ingress/pull/287): Support slow-start for Plus.
17+
* [286](https://github.com/nginxinc/kubernetes-ingress/pull/286): Add support for active health checks for Plus.
18+
19+
CHANGES:
20+
* [330](https://github.com/nginxinc/kubernetes-ingress/pull/330): Update NGINX version to 1.15.2.
21+
* [329](https://github.com/nginxinc/kubernetes-ingress/pull/329): Enforce annotations inheritance in minions.
22+
23+
BUGFIXES:
24+
* [326](https://github.com/nginxinc/kubernetes-ingress/pull/326): Fix find ingress for secret ns bug.
25+
* [284](https://github.com/nginxinc/kubernetes-ingress/pull/284): Correct Logs for Mergeable Types with Duplicate Location. Thanks to [Fernando Diaz](https://github.com/diazjf).
26+
27+
28+
UPGRADE:
29+
* For NGINX, use the 1.3.0 image from our DockerHub: `nginx/nginx-ingress:1.3.0`
30+
* For NGINX Plus, please build your own image using the 1.3.0 source code.
31+
332
### 1.2.0
433

534
* [279](https://github.com/nginxinc/kubernetes-ingress/pull/279): Update dependencies.

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.2.0
18+
- image: nginx/nginx-ingress:1.3.0
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.2.0
18+
- image: nginx-plus-ingress:1.3.0
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.2.0
3+
appVersion: 1.3.0
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.2.0
65+
`controller.image.tag` | The tag of the Ingress controller image. | 1.3.0
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.2.0"
8+
tag: "1.3.0"
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.2.0"
8+
tag: "1.3.0"
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.2.0"
8+
tag: "1.3.0"
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.2.0
17+
- image: nginx/nginx-ingress:1.3.0
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.2.0
20+
- image: nginx-plus-ingress:1.3.0
2121
name: nginx-plus-ingress
2222
ports:
2323
- name: http

0 commit comments

Comments
 (0)