Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshakov committed Oct 30, 2018
1 parent 42614ad commit f89a9a2
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 16 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

### 1.3.1

CHANGES:
* Update NGINX Plus version to R15p2.

UPGRADE:
* 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`
* For NGINX Plus, please build your own image using the 1.3.1 source code.

### 1.3.0

IMPROVEMENTS:
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.3.0
- image: nginx/nginx-ingress:1.3.1
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.3.0
- image: nginx-plus-ingress:1.3.1
# 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.3.0
appVersion: 1.3.1
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.3.0
`controller.image.tag` | The tag of the Ingress controller image. | 1.3.1
`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.3.0"
tag: "1.3.1"
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.3.0"
tag: "1.3.1"
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.3.0"
tag: "1.3.1"
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.3.0
- image: nginx/nginx-ingress:1.3.1
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.3.0
- image: nginx-plus-ingress:1.3.1
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.3.0
- image: nginx-plus-ingress:1.3.1
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.3.0
- image: nginx/nginx-ingress:1.3.1
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.3.0
- image: nginx-plus-ingress:1.3.1
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.3.0
- image: nginx-plus-ingress:1.3.1
name: nginx-plus-ingress
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion nginx-controller/Makefile
@@ -1,6 +1,6 @@
all: push

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

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.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.
As the result, the image **myregistry.example.com/nginx-ingress:1.3.1** is built and pushed to the registry. Note that the tag `1.3.1` 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.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.
As the result, the image **myregistry.example.com/nginx-plus-ingress:1.3.1** is built and pushed to the registry. Note that the tag `1.3.1` 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 f89a9a2

Please sign in to comment.