Release 0.8
This commit is contained in:
parent
09d7b756db
commit
0bcfcef8f8
13 changed files with 29 additions and 14 deletions
|
@ -1,10 +1,20 @@
|
|||
Changelog
|
||||
|
||||
### next
|
||||
|
||||
### 0.8
|
||||
|
||||
- [X] [#1063](https://github.com/kubernetes/contrib/pull/1063) watches referenced tls secrets
|
||||
- [X] [#850](https://github.com/kubernetes/contrib/pull/850) adds configurable SSL redirect nginx controller
|
||||
- [ ] [#1136](https://github.com/kubernetes/contrib/pull/1136) Fix nginx rewrite rule order
|
||||
- [X] [#1136](https://github.com/kubernetes/contrib/pull/1136) Fix nginx rewrite rule order
|
||||
- [X] [#1144](https://github.com/kubernetes/contrib/pull/1144) Add cidr whitelist support
|
||||
- [X] [#1230](https://github.com/kubernetes/contrib/pull/1130) Improve docs and examples
|
||||
- [X] [#1258](https://github.com/kubernetes/contrib/pull/1258) Avoid sync without a reachable
|
||||
- [X] [#1235](https://github.com/kubernetes/contrib/pull/1235) Fix stats by country in nginx status page
|
||||
- [X] [#1236](https://github.com/kubernetes/contrib/pull/1236) Update nginx to add dynamic TLS records and spdy
|
||||
- [X] [#1238](https://github.com/kubernetes/contrib/pull/1238) Add support for dynamic TLS records and spdy
|
||||
- [X] [#1239](https://github.com/kubernetes/contrib/pull/1239) Add support for conditional log of urls
|
||||
- [X] [#1253](https://github.com/kubernetes/contrib/pull/1253) Use delayed queue
|
||||
|
||||
|
||||
### 0.7
|
||||
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
all: push
|
||||
|
||||
# 0.0 shouldn't clobber any release builds
|
||||
TAG = 0.7
|
||||
TAG = 0.8
|
||||
PREFIX = gcr.io/google_containers/nginx-ingress-controller
|
||||
|
||||
REPO_INFO=$(shell git config --get remote.origin.url)
|
||||
UPX:=$(shell command -v upx 2> /dev/null)
|
||||
|
||||
ifndef VERSION
|
||||
VERSION := git-$(shell git rev-parse --short HEAD)
|
||||
|
@ -14,6 +15,10 @@ controller: controller.go clean
|
|||
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags \
|
||||
"-s -w -X main.version=${VERSION} -X main.gitRepo=${REPO_INFO}" \
|
||||
-o nginx-ingress-controller
|
||||
ifdef UPX
|
||||
# compressing the binary reduces the size at leat a 75%
|
||||
upx nginx-ingress-controller
|
||||
endif
|
||||
|
||||
container: controller
|
||||
docker build -t $(PREFIX):$(TAG) .
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -10,7 +10,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -21,7 +21,7 @@ spec:
|
|||
secret:
|
||||
secretName: dhparam-example
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -16,7 +16,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
|
@ -68,7 +68,7 @@ spec:
|
|||
spec:
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.7
|
||||
- image: gcr.io/google_containers/nginx-ingress-controller:0.8
|
||||
name: nginx-ingress-lb
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
|
|
Loading…
Reference in a new issue