Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshakov committed Aug 8, 2018
1 parent 0c85428 commit b8acd63
Show file tree
Hide file tree
Showing 16 changed files with 46 additions and 17 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,34 @@
# Changelog

### 1.3.0

IMPROVEMENTS:
* [325](https://github.com/nginxinc/kubernetes-ingress/pull/325): Report ingress status.
* [311](https://github.com/nginxinc/kubernetes-ingress/pull/311): Support JWT auth in mergeable minions.
* [310](https://github.com/nginxinc/kubernetes-ingress/pull/310): NGINX configuration template custom path support.
* [308](https://github.com/nginxinc/kubernetes-ingress/pull/308): Add prometheus exporter support to helm chart.
* [303](https://github.com/nginxinc/kubernetes-ingress/pull/303): Add fetch custom NGINX template from ConfigMap.
* [301](https://github.com/nginxinc/kubernetes-ingress/pull/301): Update prometheus exporter image for Plus.
* [298](https://github.com/nginxinc/kubernetes-ingress/pull/298): Prefetch ConfigMap before initial NGINX Config generation.
* [296](https://github.com/nginxinc/kubernetes-ingress/pull/296): Improve Helm Chart.
* [295](https://github.com/nginxinc/kubernetes-ingress/pull/295): Report version information.
* [294](https://github.com/nginxinc/kubernetes-ingress/pull/294): Support dynamic reconfiguration in mergeable ingresses for Plus.
* [287](https://github.com/nginxinc/kubernetes-ingress/pull/287): Support slow-start for Plus.
* [286](https://github.com/nginxinc/kubernetes-ingress/pull/286): Add support for active health checks for Plus.

CHANGES:
* [330](https://github.com/nginxinc/kubernetes-ingress/pull/330): Update NGINX version to 1.15.2.
* [329](https://github.com/nginxinc/kubernetes-ingress/pull/329): Enforce annotations inheritance in minions.

BUGFIXES:
* [326](https://github.com/nginxinc/kubernetes-ingress/pull/326): Fix find ingress for secret ns bug.
* [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).


UPGRADE:
* For NGINX, use the 1.3.0 image from our DockerHub: `nginx/nginx-ingress:1.3.0`
* For NGINX Plus, please build your own image using the 1.3.0 source code.

### 1.2.0

* [279](https://github.com/nginxinc/kubernetes-ingress/pull/279): Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion examples/openshift/nginx-ingress-rc.yaml
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx/nginx-ingress:1.2.0
- image: nginx/nginx-ingress:1.3.0
imagePullPolicy: Always
name: nginx-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/openshift/nginx-plus-ingress-rc.yaml
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx-plus-ingress:1.2.0
- image: nginx-plus-ingress:1.3.0
# imagePullPolicy: Always
name: nginx-plus-ingress
ports:
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/Chart.yaml
@@ -1,6 +1,6 @@
name: nginx-ingress
version: 0.1.1
appVersion: 1.2.0
appVersion: 1.3.0
description: NGINX Ingress Controller
sources:
- https://github.com/nginxinc/kubernetes-ingress/tree/master/helm-chart
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/README.md
Expand Up @@ -62,7 +62,7 @@ Parameter | Description | Default
`controller.nginxplus` | Deploys the Ingress controller for NGINX Plus. | false
`controller.hostNetwork` | Enables the Ingress controller pods to use the host's network namespace. | false
`controller.image.repository` | The image repository of the Ingress controller. | nginx/nginx-ingress
`controller.image.tag` | The tag of the Ingress controller image. | 1.2.0
`controller.image.tag` | The tag of the Ingress controller image. | 1.3.0
`controller.image.pullPolicy` | The pull policy for the Ingress controller image. | IfNotPresent
`controller.config.entries` | The entries of the ConfigMap for customizing NGINX configuration. | { }
`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.
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/values-icp.yaml
Expand Up @@ -5,7 +5,7 @@ controller:
hostNetwork: false
image:
repository: mycluster.icp:8500/kube-system/nginx-plus-ingress
tag: "1.2.0"
tag: "1.3.0"
pullPolicy: IfNotPresent
# It is recommended to use your own TLS certificate and key
defaultTLS:
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/values-plus.yaml
Expand Up @@ -5,7 +5,7 @@ controller:
hostNetwork: false
image:
repository: nginx-plus-ingress
tag: "1.2.0"
tag: "1.3.0"
pullPolicy: IfNotPresent
# It is recommended to use your own TLS certificate and key
defaultTLS:
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/values.yaml
Expand Up @@ -5,7 +5,7 @@ controller:
hostNetwork: false
image:
repository: nginx/nginx-ingress
tag: "1.2.0"
tag: "1.3.0"
pullPolicy: IfNotPresent
config:
entries: {}
Expand Down
2 changes: 1 addition & 1 deletion install/daemon-set/nginx-ingress.yaml
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx/nginx-ingress:1.2.0
- image: nginx/nginx-ingress:1.3.0
name: nginx-ingress
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion install/daemon-set/nginx-plus-ingress-with-prometheus.yaml
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx-plus-ingress:1.2.0
- image: nginx-plus-ingress:1.3.0
name: nginx-plus-ingress
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion install/daemon-set/nginx-plus-ingress.yaml
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx-plus-ingress:1.2.0
- image: nginx-plus-ingress:1.3.0
name: nginx-plus-ingress
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion install/deployment/nginx-ingress.yaml
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx/nginx-ingress:1.2.0
- image: nginx/nginx-ingress:1.3.0
name: nginx-ingress
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion install/deployment/nginx-plus-ingress-with-prometheus.yaml
Expand Up @@ -18,7 +18,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx-plus-ingress:1.2.0
- image: nginx-plus-ingress:1.3.0
name: nginx-plus-ingress
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion install/deployment/nginx-plus-ingress.yaml
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
serviceAccountName: nginx-ingress
containers:
- image: nginx-plus-ingress:1.2.0
- image: nginx-plus-ingress:1.3.0
name: nginx-plus-ingress
ports:
- name: http
Expand Down
4 changes: 2 additions & 2 deletions nginx-controller/Makefile
@@ -1,11 +1,11 @@
all: push

VERSION = 1.2.0
VERSION = 1.3.0
TAG = $(VERSION)
PREFIX = nginx/nginx-ingress

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/
GOLANG_CONTAINER = golang:1.9
GOLANG_CONTAINER = golang:1.10
DOCKERFILE = Dockerfile

BUILD_IN_CONTAINER = 1
Expand Down
4 changes: 2 additions & 2 deletions nginx-controller/README.md
Expand Up @@ -41,7 +41,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
```
`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.

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

* 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:
```
Expand All @@ -55,7 +55,7 @@ We build the image using the make utility and the provided `Makefile`. Let’s c
```
`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.

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

Next you will find the details about available Makefile targets and variables.

Expand Down

0 comments on commit b8acd63

Please sign in to comment.