Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump controller manager rev to pick up machineset controller fix #323

Merged
merged 1 commit into from
Jun 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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