Merge pull request #1577 from aledbf/update-nginx-controller

Automatic merge from submit-queue

WIP: [nginx-ingress-controller] Release 0.8.3

fixes #1572
This commit is contained in:
Kubernetes Submit Queue 2016-08-22 11:33:31 -07:00 committed by GitHub
commit e4236ad0f2
4 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,12 @@
Changelog Changelog
### 0.8.3
- [X] [#1450](https://github.com/kubernetes/contrib/pull/1450) Check for errors in nginx template
- [ ] [#1498](https://github.com/kubernetes/contrib/pull/1498) Refactoring of template handling
- [X] [#1467](https://github.com/kubernetes/contrib/pull/1467) Use ClientConfig to configure connection
- [X] [#1575](https://github.com/kubernetes/contrib/pull/1575) Update nginx to 1.11.3
### 0.8.2 ### 0.8.2
- [X] [#1336](https://github.com/kubernetes/contrib/pull/1336) Add annotation to skip ingress rule - [X] [#1336](https://github.com/kubernetes/contrib/pull/1336) Add annotation to skip ingress rule

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
FROM gcr.io/google_containers/nginx-slim:0.8 FROM gcr.io/google_containers/nginx-slim:0.9
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \ RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
diffutils \ diffutils \

View file

@ -1,7 +1,7 @@
all: push all: push
# 0.0 shouldn't clobber any release builds # 0.0 shouldn't clobber any release builds
TAG = 0.8.2 TAG = 0.8.3
PREFIX = gcr.io/google_containers/nginx-ingress-controller PREFIX = gcr.io/google_containers/nginx-ingress-controller
REPO_INFO=$(shell git config --get remote.origin.url) REPO_INFO=$(shell git config --get remote.origin.url)

View file

@ -43,7 +43,7 @@ const (
var ( var (
// value overwritten during build. This can be used to resolve issues. // value overwritten during build. This can be used to resolve issues.
version = "0.8.2" version = "0.8.3"
gitRepo = "https://github.com/kubernetes/contrib" gitRepo = "https://github.com/kubernetes/contrib"
flags = pflag.NewFlagSet("", pflag.ExitOnError) flags = pflag.NewFlagSet("", pflag.ExitOnError)