@@ -67,13 +67,13 @@ func NewDevOptions() *DevOptions {
67
67
}
68
68
69
69
var devExample = ktemplates .Examples (`
70
- # Deploy component to the development cluster, using the default run command
70
+ # Run your application on the cluster in the Dev mode , using the default run command
71
71
%[1]s
72
72
73
- # Deploy component to the development cluster, using the specified run command
73
+ # Run your application on the cluster in the Dev mode , using the specified run command
74
74
%[1]s --run-command <my-command>
75
75
76
- # Deploy component to the development cluster without automatically syncing the code upon any file changes
76
+ # Run your application on the cluster in the Dev mode, without automatically syncing the code upon any file changes
77
77
%[1]s --no-watch
78
78
` )
79
79
@@ -170,7 +170,7 @@ func (o *DevOptions) Run(ctx context.Context) (err error) {
170
170
scontext .SetProjectType (ctx , devFileObj .Data .GetMetadata ().ProjectType )
171
171
scontext .SetDevfileName (ctx , componentName )
172
172
173
- log .Sectionf ("Deploying to %s in developer mode" , deployingTo )
173
+ log .Sectionf ("Running on %s in Dev mode" , deployingTo )
174
174
175
175
return o .clientset .DevClient .Start (
176
176
o .ctx ,
@@ -207,7 +207,7 @@ func NewCmdDev(name, fullName string) *cobra.Command {
207
207
o := NewDevOptions ()
208
208
devCmd := & cobra.Command {
209
209
Use : name ,
210
- Short : "Deploy component to development cluster" ,
210
+ Short : "Run your application on the cluster in the Dev mode " ,
211
211
Long : `odo dev is a long running command that will automatically sync your source to the cluster.
212
212
It forwards endpoints with any exposure values ('public', 'internal' or 'none') to a port on localhost.` ,
213
213
Example : fmt .Sprintf (devExample , fullName ),
0 commit comments