Skip to content

Commit

Permalink
Merge pull request #17 from piosz/v0.2.0
Browse files Browse the repository at this point in the history
Bumped version to 0.2.0
  • Loading branch information
piosz committed Sep 15, 2017
2 parents 781a359 + a21e20c commit ee062b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ifndef TEMP_DIR
TEMP_DIR:=$(shell mktemp -d /tmp/metrics-server.XXXXXX)
endif

VERSION?=v0.1.0
VERSION?=v0.2.0
GIT_COMMIT:=$(shell git rev-parse --short HEAD)

ifdef REPO_DIR
Expand Down
6 changes: 3 additions & 3 deletions deploy/metrics-apiservice.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apiVersion: apiregistration.k8s.io/v1beta1
kind: APIService
metadata:
name: v1alpha1.metrics
name: v1beta1.metrics.k8s.io
spec:
service:
name: metrics-server
namespace: kube-system
group: metrics
version: v1alpha1
group: metrics.k8s.io
version: v1beta1
insecureSkipTLSVerify: true
groupPriorityMinimum: 100
versionPriority: 100
2 changes: 1 addition & 1 deletion deploy/metrics-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
serviceAccountName: metrics-server
containers:
- name: metrics-server
image: gcr.io/google_containers/metrics-server-amd64:dev
image: gcr.io/google_containers/metrics-server-amd64:v0.2.0
imagePullPolicy: Always
command:
- /metrics-server
Expand Down
2 changes: 1 addition & 1 deletion metrics/heapster.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func main() {
setLabelSeperator(opt)
setMaxProcs(opt)
glog.Infof(strings.Join(os.Args, " "))
glog.Infof("Heapster version %v", version.MetricsServerVersion)
glog.Infof("Metrics Server version %v", version.MetricsServerVersion)
if err := validateFlags(opt); err != nil {
glog.Fatal(err)
}
Expand Down

0 comments on commit ee062b5

Please sign in to comment.