Unverified Commit 3811360d authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #68299 from MrHohn/addon-manager-v-8-7

Automatic merge from submit-queue (batch tested with PRs 68087, 68256, 64621, 68299, 68296). If you want to cherry-pick this change to another branch, please follow the instructions here: https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md. Bump addon-manager to v8.7 **What this PR does / why we need it**: Major changes: - Support extra `--prune-whitelist` resources in kube-addon-manager. - Update kubectl to v1.10.7. Basically picking up https://github.com/kubernetes/kubernetes/pull/67743. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes #NONE **Special notes for your reviewer**: /assign @Random-Liu @mikedanese **Release note**: ```release-note Bump addon-manager to v8.7 - Support extra `--prune-whitelist` resources in kube-addon-manager. - Update kubectl to v1.10.7. ```
parents 4da3bdc4 e9127b0d
### Version 8.7 (Tue September 4 2018 Zihong Zheng <zihongz@google.com>)
- Support extra `--prune-whitelist` resources in kube-addon-manager.
- Update kubectl to v1.10.7.
### Version 8.6 (Tue February 20 2018 Zihong Zheng <zihongz@google.com>) ### Version 8.6 (Tue February 20 2018 Zihong Zheng <zihongz@google.com>)
- Allow reconcile/ensure loop to work with resource under non-kube-system namespace. - Allow reconcile/ensure loop to work with resource under non-kube-system namespace.
- Update kubectl to v1.9.3. - Update kubectl to v1.9.3.
......
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
IMAGE=staging-k8s.gcr.io/kube-addon-manager IMAGE=staging-k8s.gcr.io/kube-addon-manager
ARCH?=amd64 ARCH?=amd64
TEMP_DIR:=$(shell mktemp -d) TEMP_DIR:=$(shell mktemp -d)
VERSION=v8.6 VERSION=v8.7
KUBECTL_VERSION?=v1.9.3 KUBECTL_VERSION?=v1.10.7
ifeq ($(ARCH),amd64) ifeq ($(ARCH),amd64)
BASEIMAGE?=bashell/alpine-bash BASEIMAGE?=bashell/alpine-bash
......
...@@ -14,7 +14,7 @@ spec: ...@@ -14,7 +14,7 @@ spec:
- name: kube-addon-manager - name: kube-addon-manager
# When updating version also bump it in: # When updating version also bump it in:
# - test/kubemark/resources/manifests/kube-addon-manager.yaml # - test/kubemark/resources/manifests/kube-addon-manager.yaml
image: k8s.gcr.io/kube-addon-manager:v8.6 image: k8s.gcr.io/kube-addon-manager:v8.7
command: command:
- /bin/bash - /bin/bash
- -c - -c
......
...@@ -9,7 +9,7 @@ spec: ...@@ -9,7 +9,7 @@ spec:
hostNetwork: true hostNetwork: true
containers: containers:
- name: kube-addon-manager - name: kube-addon-manager
image: {{kube_docker_registry}}/kube-addon-manager:v8.6 image: {{kube_docker_registry}}/kube-addon-manager:v8.7
command: command:
- /bin/bash - /bin/bash
- -c - -c
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment