transformers: match API object capitalization in text output

This commit is contained in:
Dusty Mabe
2016-10-28 15:22:40 -04:00
parent 0ee3494a18
commit 48aa4c7f7a
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -216,13 +216,13 @@ func (k *OpenShift) Deploy(komposeObject kobject.KomposeObject, opt kobject.Conv
if err != nil {
return err
}
logrus.Infof("Successfully created service: %s", t.Name)
logrus.Infof("Successfully created Service: %s", t.Name)
case *api.PersistentVolumeClaim:
_, err := kclient.PersistentVolumeClaims(namespace).Create(t)
if err != nil {
return err
}
logrus.Infof("Successfully created persistentVolumeClaim: %s", t.Name)
logrus.Infof("Successfully created PersistentVolumeClaim: %s", t.Name)
}
}
fmt.Println("\nYour application has been deployed to OpenShift. You can run 'oc get dc,svc,is,pvc' for details.")