Skip to content

Commit

Permalink
Bump controller manager rev to pick up machineset controller fix (#323)
Browse files Browse the repository at this point in the history
This is to pick up #316
  • Loading branch information
k4leung4 authored and k8s-ci-robot committed Jun 11, 2018
1 parent 367b383 commit 3ef823a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cloud/google/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
)

var apiServerImage = "gcr.io/k8s-cluster-api/cluster-apiserver:0.0.5"
var controllerManagerImage = "gcr.io/k8s-cluster-api/controller-manager:0.0.6"
var controllerManagerImage = "gcr.io/k8s-cluster-api/controller-manager:0.0.7"
var machineControllerImage = "gcr.io/k8s-cluster-api/gce-machine-controller:0.0.13"

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cloud/vsphere/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
)

var apiServerImage = "gcr.io/k8s-cluster-api/cluster-apiserver:0.0.5"
var controllerManagerImage = "gcr.io/k8s-cluster-api/controller-manager:0.0.6"
var controllerManagerImage = "gcr.io/k8s-cluster-api/controller-manager:0.0.7"
var machineControllerImage = "gcr.io/k8s-cluster-api/vsphere-machine-controller:0.0.6"

func init() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
operator: Exists
containers:
- name: controller-manager
image: gcr.io/k8s-cluster-api/controller-manager:0.0.6
image: gcr.io/k8s-cluster-api/controller-manager:0.0.7
volumeMounts:
- name: config
mountPath: /etc/kubernetes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
operator: Exists
containers:
- name: controller-manager
image: gcr.io/k8s-cluster-api/controller-manager:0.0.5
image: gcr.io/k8s-cluster-api/controller-manager:0.0.7
volumeMounts:
- name: config
mountPath: /etc/kubernetes
Expand Down
2 changes: 1 addition & 1 deletion cmd/controller-manager/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GCR_BUCKET = k8s-cluster-api
PREFIX = gcr.io/$(GCR_BUCKET)
DEV_PREFIX ?= gcr.io/$(shell gcloud config get-value project)
NAME = controller-manager
TAG = 0.0.6
TAG = 0.0.7

image:
docker build -t "$(PREFIX)/$(NAME):$(TAG)" -f ./Dockerfile ../..
Expand Down

0 comments on commit 3ef823a

Please sign in to comment.