Skip to content

Commit

Permalink
Set version v0.5.0, Fix build lib go command
Browse files Browse the repository at this point in the history
  • Loading branch information
copejon committed Jun 14, 2018
1 parent 4ab093c commit b12ad61
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ unit-test:

lib-size:
# compile size "library" package consumed by external repos
docker run -it --rm -v $(REPO_ROOT):$(WORK_DIR):Z -w $(WORK_DIR) -e GOOS=$(GOOS) -e GOARCH=$(ARCH) -e CGO_ENABLED=$(CGO_ENABLED) $(BUILD_IMAGE) go build -a -ldflags $(LDFLAGS) $(WORK_DIR)/pkg/lib/size/size.go -o /tmp/size
docker run -it --rm -v $(REPO_ROOT):$(WORK_DIR):Z -w $(WORK_DIR) -e GOOS=$(GOOS) -e GOARCH=$(ARCH) -e CGO_ENABLED=$(CGO_ENABLED) $(BUILD_IMAGE) go build -a -ldflags $(LDFLAGS) -o /tmp/size $(WORK_DIR)/pkg/lib/size/size.go

clean:
@echo '********'
Expand Down
2 changes: 1 addition & 1 deletion manifests/controller/cdi-controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
serviceAccountName: cdi-sa
containers:
- name: cdi-controller
image: kubevirt/cdi-controller:v0.5.0-alpha.0
image: kubevirt/cdi-controller:v0.5.0
imagePullPolicy: IfNotPresent
args: ["-v=1"] # default verbosity; change to 2 or 3 for more detailed logging
---
Expand Down
2 changes: 1 addition & 1 deletion manifests/importer/importer-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
restartPolicy: Never
containers:
- name: importer
image: kubevirt/cdi-importer:v0.5.0-alpha.0
image: kubevirt/cdi-importer:v0.5.0
imagePullPolicy: Always
env:
# REQUIRED! Location of source data.
Expand Down
2 changes: 1 addition & 1 deletion pkg/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
// TODO: maybe the vm cloner can use these common values

const (
CDI_VERSION = "v0.5.0-alpha.0"
CDI_VERSION = "v0.5.0"

IMPORTER_DEFAULT_IMAGE = "docker.io/kubevirt/cdi-importer:" + CDI_VERSION
CDI_LABEL_KEY = "app"
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.5.0-alpha.0
v0.5.0

0 comments on commit b12ad61

Please sign in to comment.