Skip to content

Commit

Permalink
Add kvm2 --version
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed May 31, 2019
1 parent 16af8b4 commit e256d46
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ release-minikube: out/minikube checksum
out/docker-machine-driver-kvm2:
go build \
-installsuffix "static" \
-ldflags "-X k8s.io/minikube/pkg/drivers/kvm/version.VERSION=$(VERSION)" \
-ldflags "-X k8s.io/minikube/pkg/drivers/kvm.version=$(VERSION)" \
-tags libvirt.1.3.1 \
-o $(BUILD_DIR)/docker-machine-driver-kvm2 \
k8s.io/minikube/cmd/drivers/kvm
Expand Down
7 changes: 7 additions & 0 deletions cmd/drivers/kvm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,17 @@ limitations under the License.
package main

import (
"fmt"
"github.com/docker/machine/libmachine/drivers/plugin"
"k8s.io/minikube/pkg/drivers/kvm"
"os"
)

func main() {
if len(os.Args) > 1 && os.Args[1] == "--version" {
fmt.Println(kvm.GetVersion())
return
}

plugin.RegisterDriver(kvm.NewDriver("", ""))
}
27 changes: 27 additions & 0 deletions pkg/drivers/kvm/version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
Copyright 2016 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package kvm

// The current version of the docker-machine-driver-kvm2

// version is a private field and should be set when compiling with --ldflags="-X k8s.io/minikube/pkg/drivers/kvm.version=vX.Y.Z"
var version = "v0.0.0-unset"

// GetVersion returns the current docker-machine-driver-kvm2 version
func GetVersion() string {
return version
}

0 comments on commit e256d46

Please sign in to comment.