feat(tiller): print tiller version on startup

pull/1890/head
Adam Reese 8 years ago
parent d41f093331
commit d97f44e3a0

@ -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) {
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 {

Loading…
Cancel
Save