Skip to content

Commit 801b564

Browse files
author
OpenShift Bot
authored
Merge pull request #13624 from bparees/newapp_resource_Types
Merged by openshift-bot
2 parents 7cb8747 + 66443a9 commit 801b564

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pkg/cmd/cli/cmd/newapp.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ func (o *NewAppOptions) RunNewApp() error {
294294
}
295295
}
296296
}
297-
298297
if err := setAnnotations(map[string]string{newcmd.GeneratedByNamespace: newcmd.GeneratedByNewApp}, result); err != nil {
299298
return err
300299
}
@@ -543,7 +542,7 @@ func setAnnotations(annotations map[string]string, result *newcmd.AppResult) err
543542
for _, object := range result.List.Items {
544543
err := util.AddObjectAnnotations(object, annotations)
545544
if err != nil {
546-
return err
545+
return fmt.Errorf("failed to add annotation to object of type %q, this resource type is probably unsupported by your client version.", object.GetObjectKind().GroupVersionKind())
547546
}
548547
}
549548
return nil
@@ -553,7 +552,7 @@ func setLabels(labels map[string]string, result *newcmd.AppResult) error {
553552
for _, object := range result.List.Items {
554553
err := util.AddObjectLabels(object, labels)
555554
if err != nil {
556-
return err
555+
return fmt.Errorf("failed to add annotation to object of type %q, this resource type is probably unsupported by your client version.", object.GetObjectKind().GroupVersionKind())
557556
}
558557
}
559558
return nil

0 commit comments

Comments
 (0)