Skip to content

Commit b8acd63

Browse files
committed
Release 1.3.0
1 parent 0c85428 commit b8acd63

16 files changed

+46
-17
lines changed

Diff for: CHANGELOG.md

+29
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.

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.2.0
18+
- image: nginx/nginx-ingress:1.3.0
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.2.0
18+
- image: nginx-plus-ingress:1.3.0
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.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

Diff for: helm-chart/README.md

+1-1
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.

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.2.0"
8+
tag: "1.3.0"
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.2.0"
8+
tag: "1.3.0"
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.2.0"
8+
tag: "1.3.0"
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.2.0
17+
- image: nginx/nginx-ingress:1.3.0
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.2.0
20+
- image: nginx-plus-ingress:1.3.0
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.2.0
17+
- image: nginx-plus-ingress:1.3.0
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.2.0
18+
- image: nginx/nginx-ingress:1.3.0
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.2.0
21+
- image: nginx-plus-ingress:1.3.0
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.2.0
18+
- image: nginx-plus-ingress:1.3.0
1919
name: nginx-plus-ingress
2020
ports:
2121
- name: http

Diff for: nginx-controller/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
all: push
22

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

77
DOCKER_RUN = docker run --rm -v $(shell pwd)/../:/go/src/github.com/nginxinc/kubernetes-ingress -w /go/src/github.com/nginxinc/kubernetes-ingress/nginx-controller/
8-
GOLANG_CONTAINER = golang:1.9
8+
GOLANG_CONTAINER = golang:1.10
99
DOCKERFILE = Dockerfile
1010

1111
BUILD_IN_CONTAINER = 1

Diff for: nginx-controller/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -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.2.0** is built and pushed to the registry. Note that the tag `1.2.0` comes from the `VERSION` variable, defined in the Makefile.
44+
As the result, the image **myregistry.example.com/nginx-ingress:1.3.0** is built and pushed to the registry. Note that the tag `1.3.0` 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 `nginx-controller` folder:
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.2.0** is built and pushed to the registry. Note that the tag `1.2.0` comes from the `VERSION` variable, defined in the Makefile.
58+
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.3.0** is built and pushed to the registry. Note that the tag `1.3.0` comes from the `VERSION` variable, defined in the Makefile.
5959
6060
Next you will find the details about available Makefile targets and variables.
6161

0 commit comments

Comments
 (0)