Update storage_provisioner.go

pull/3601/head
jay vyas 2019-01-29 08:40:43 -08:00 committed by GitHub
parent 1904f1e5d2
commit 6faab7136d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ func (p *hostPathProvisioner) Delete(volume *v1.PersistentVolume) error {
// Start storage provisioner server
func StartStorageProvisioner() error {
glog.Infof("Initializing the Minikube CSI storage provisioner...")
glog.Infof("Initializing the Minikube storage provisioner...")
config, err := restclient.InClusterConfig()
if err != nil {
return err
@ -137,7 +137,7 @@ func StartStorageProvisioner() error {
// PVs
pc := controller.NewProvisionController(clientset, provisionerName, hostPathProvisioner, serverVersion.GitVersion)
glog.Info("...Done initializing succesfully, now starting storage the CSI provisioner service !")
glog.Info("...Done initializing succesfully, now starting storage the provisioner service !")
pc.Run(wait.NeverStop)
return nil
}