Skip to content
This repository was archived by the owner on Apr 17, 2019. It is now read-only.

Commit add0235

Browse files
committed
Release 0.8.3
1 parent b3cdafd commit add0235

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

ingress/controllers/nginx/Changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Changelog
22

3+
### 0.8.3
4+
5+
- [X] [#1450](https://github.com/kubernetes/contrib/pull/1450) Check for errors in nginx template
6+
- [ ] [#1498](https://github.com/kubernetes/contrib/pull/1498) Refactoring of template handling
7+
- [X] [#1467](https://github.com/kubernetes/contrib/pull/1467) Use ClientConfig to configure connection
8+
- [X] [#1575](https://github.com/kubernetes/contrib/pull/1575) Update nginx to 1.11.3
9+
310
### 0.8.2
411

512
- [X] [#1336](https://github.com/kubernetes/contrib/pull/1336) Add annotation to skip ingress rule

ingress/controllers/nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM gcr.io/google_containers/nginx-slim:0.8
15+
FROM gcr.io/google_containers/nginx-slim:0.9
1616

1717
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
1818
diffutils \

ingress/controllers/nginx/Makefile

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

33
# 0.0 shouldn't clobber any release builds
4-
TAG = 0.8.2
4+
TAG = 0.8.3
55
PREFIX = gcr.io/google_containers/nginx-ingress-controller
66

77
REPO_INFO=$(shell git config --get remote.origin.url)

ingress/controllers/nginx/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const (
4343

4444
var (
4545
// value overwritten during build. This can be used to resolve issues.
46-
version = "0.8.2"
46+
version = "0.8.3"
4747
gitRepo = "https://github.com/kubernetes/contrib"
4848

4949
flags = pflag.NewFlagSet("", pflag.ExitOnError)

0 commit comments

Comments
 (0)