Commit d97f44e3 authored by Adam Reese's avatar Adam Reese

feat(tiller): print tiller version on startup

parent d41f0933
...@@ -33,6 +33,7 @@ import ( ...@@ -33,6 +33,7 @@ import (
"k8s.io/helm/pkg/storage/driver" "k8s.io/helm/pkg/storage/driver"
"k8s.io/helm/pkg/tiller" "k8s.io/helm/pkg/tiller"
"k8s.io/helm/pkg/tiller/environment" "k8s.io/helm/pkg/tiller/environment"
"k8s.io/helm/pkg/version"
) )
const ( const (
...@@ -104,8 +105,9 @@ func start(c *cobra.Command, args []string) { ...@@ -104,8 +105,9 @@ func start(c *cobra.Command, args []string) {
os.Exit(1) os.Exit(1)
} }
fmt.Printf("Tiller is listening on %s\n", grpcAddr) fmt.Printf("Starting Tiller %s\n", version.GetVersion())
fmt.Printf("Probes server is listening on %s\n", probeAddr) fmt.Printf("GRPC listening on %s\n", grpcAddr)
fmt.Printf("Probes listening on %s\n", probeAddr)
fmt.Printf("Storage driver is %s\n", env.Releases.Name()) fmt.Printf("Storage driver is %s\n", env.Releases.Name())
if enableTracing { if enableTracing {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment