diff --git a/cluster/addons/addon-manager/Makefile b/cluster/addons/addon-manager/Makefile index 55a7051983e..254bf485654 100644 --- a/cluster/addons/addon-manager/Makefile +++ b/cluster/addons/addon-manager/Makefile @@ -15,26 +15,26 @@ IMAGE=gcr.io/google-containers/kube-addon-manager ARCH?=amd64 TEMP_DIR:=$(shell mktemp -d) -VERSION=v4 +VERSION=v5 # amd64 and arm has "stable" binaries pushed for v1.2, arm64 and ppc64le hasn't so they have to fetch the latest alpha # however, arm64 and ppc64le are very experimental right now, so it's okay ifeq ($(ARCH),amd64) - KUBECTL_VERSION?=v1.2.4 + KUBECTL_VERSION?=v1.3.0-beta.2 BASEIMAGE?=python:2.7-slim endif ifeq ($(ARCH),arm) - KUBECTL_VERSION?=v1.2.4 + KUBECTL_VERSION?=v1.3.0-beta.2 BASEIMAGE?=hypriot/rpi-python:2.7 QEMUARCH=arm endif ifeq ($(ARCH),arm64) - KUBECTL_VERSION?=v1.3.0-beta.0 + KUBECTL_VERSION?=v1.3.0-beta.2 BASEIMAGE?=aarch64/python:2.7-slim QEMUARCH=aarch64 endif ifeq ($(ARCH),ppc64le) - KUBECTL_VERSION?=v1.3.0-alpha.4 + KUBECTL_VERSION?=v1.3.0-beta.2 BASEIMAGE?=ppc64le/python:2.7-slim QEMUARCH=ppc64le endif diff --git a/cluster/addons/addon-manager/kube-addon-update.sh b/cluster/addons/addon-manager/kube-addon-update.sh index 8b38b5ea3a3..efb3b6d7b2a 100755 --- a/cluster/addons/addon-manager/kube-addon-update.sh +++ b/cluster/addons/addon-manager/kube-addon-update.sh @@ -477,6 +477,7 @@ function update-addons() { reconcile-objects ${addon_path} ReplicationController "-" & reconcile-objects ${addon_path} Deployment "-" & reconcile-objects ${addon_path} DaemonSet "-" & + reconcile-objects ${addon_path} PetSet "-" & # We don't expect names to be versioned for the following kinds, so # we match the entire name, ignoring version suffix.