@@ -605,7 +605,20 @@ func CompleteAppConfig(config *newcmd.AppConfig, f *clientcmd.Factory, c *cobra.
605
605
606
606
unknown := config .AddArguments (args )
607
607
if len (unknown ) != 0 {
608
- return kcmdutil .UsageErrorf (c , "Did not recognize the following arguments: %v" , unknown )
608
+ buf := & bytes.Buffer {}
609
+ fmt .Fprintf (buf , "Did not recognize the following arguments: %v\n \n " , unknown )
610
+ for argName , classErrs := range config .ComponentInputClassificationErrors {
611
+ fmt .Fprintf (buf , "%s:\n " , argName )
612
+ for _ , classErr := range classErrs {
613
+ if classErr .Value != nil {
614
+ fmt .Fprintf (buf , fmt .Sprintf ("%s: %v\n " , classErr .Key , classErr .Value ))
615
+ } else {
616
+ fmt .Fprintf (buf , fmt .Sprintf ("%s\n " , classErr .Key ))
617
+ }
618
+ }
619
+ fmt .Fprintln (buf )
620
+ }
621
+ return kcmdutil .UsageErrorf (c , heredoc .Docf (buf .String ()))
609
622
}
610
623
611
624
if config .AllowMissingImages && config .AsSearch {
@@ -701,7 +714,7 @@ func retryBuildConfig(info *resource.Info, err error) runtime.Object {
701
714
return nil
702
715
}
703
716
704
- func handleError (err error , baseName , commandName , commandPath string , config * newcmd.AppConfig , transformError func (err error , baseName , commandName , commandPath string , groups errorGroups )) error {
717
+ func handleError (err error , baseName , commandName , commandPath string , config * newcmd.AppConfig , transformError func (err error , baseName , commandName , commandPath string , groups errorGroups , config * newcmd. AppConfig )) error {
705
718
if err == nil {
706
719
return nil
707
720
}
@@ -711,23 +724,19 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
711
724
}
712
725
groups := errorGroups {}
713
726
for _ , err := range errs {
714
- transformError (err , baseName , commandName , commandPath , groups )
727
+ transformError (err , baseName , commandName , commandPath , groups , config )
715
728
}
716
729
buf := & bytes.Buffer {}
717
- if len (config .ArgumentClassificationErrors ) > 0 {
718
- fmt .Fprintf (buf , "Errors occurred while determining argument types:\n " )
719
- for _ , classErr := range config .ArgumentClassificationErrors {
720
- fmt .Fprintf (buf , fmt .Sprintf ("\n %s: %v\n " , classErr .Key , classErr .Value ))
721
- }
722
- fmt .Fprint (buf , "\n " )
723
- // this print serves as a header for the printing of the errorGroups, but
724
- // only print it if we precede with classification errors, to help distinguish
725
- // between the two
726
- fmt .Fprintln (buf , "Errors occurred during resource creation:" )
727
- }
728
730
for _ , group := range groups {
729
731
fmt .Fprint (buf , kcmdutil .MultipleErrors ("error: " , group .errs ))
732
+ if len (group .classification ) > 0 {
733
+ fmt .Fprintln (buf )
734
+ }
735
+ fmt .Fprintf (buf , group .classification )
730
736
if len (group .suggestion ) > 0 {
737
+ if len (group .classification ) > 0 {
738
+ fmt .Fprintln (buf )
739
+ }
731
740
fmt .Fprintln (buf )
732
741
}
733
742
fmt .Fprint (buf , group .suggestion )
@@ -736,20 +745,22 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
736
745
}
737
746
738
747
type errorGroup struct {
739
- errs []error
740
- suggestion string
748
+ errs []error
749
+ suggestion string
750
+ classification string
741
751
}
742
752
type errorGroups map [string ]errorGroup
743
753
744
- func (g errorGroups ) Add (group string , suggestion string , err error , errs ... error ) {
754
+ func (g errorGroups ) Add (group string , suggestion string , classification string , err error , errs ... error ) {
745
755
all := g [group ]
746
756
all .errs = append (all .errs , errs ... )
747
757
all .errs = append (all .errs , err )
748
758
all .suggestion = suggestion
759
+ all .classification = classification
749
760
g [group ] = all
750
761
}
751
762
752
- func transformRunError (err error , baseName , commandName , commandPath string , groups errorGroups ) {
763
+ func transformRunError (err error , baseName , commandName , commandPath string , groups errorGroups , config * newcmd. AppConfig ) {
753
764
switch t := err .(type ) {
754
765
case newcmd.ErrRequiresExplicitAccess :
755
766
if t .Input .Token != nil && t .Input .Token .ServiceAccount {
@@ -762,6 +773,7 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
762
773
You can see more information about the image by adding the --dry-run flag.
763
774
If you trust the provided image, include the flag --grant-install-rights.` ,
764
775
),
776
+ "" ,
765
777
fmt .Errorf ("installing %q requires an 'installer' service account with project editor access" , t .Match .Value ),
766
778
)
767
779
} else {
@@ -774,11 +786,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
774
786
You can see more information about the image by adding the --dry-run flag.
775
787
If you trust the provided image, include the flag --grant-install-rights.` ,
776
788
),
789
+ "" ,
777
790
fmt .Errorf ("installing %q requires that you grant the image access to run with your credentials" , t .Match .Value ),
778
791
)
779
792
}
780
793
return
781
794
case newapp.ErrNoMatch :
795
+ classification , _ := config .ComponentInputClassificationWinners [t .Value ]
782
796
groups .Add (
783
797
"no-matches" ,
784
798
heredoc .Docf (`
@@ -794,11 +808,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
794
808
795
809
See '%[1]s -h' for examples.` , commandPath ,
796
810
),
811
+ heredoc .Docf (classification ),
797
812
t ,
798
813
t .Errs ... ,
799
814
)
800
815
return
801
816
case newapp.ErrMultipleMatches :
817
+ classification , _ := config .ComponentInputClassificationWinners [t .Value ]
802
818
buf := & bytes.Buffer {}
803
819
for i , match := range t .Matches {
804
820
@@ -812,6 +828,7 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
812
828
813
829
%[2]sTo view a full list of matches, use '%[3]s %[4]s -S %[1]s'` , t .Value , buf .String (), baseName , commandName ,
814
830
),
831
+ classification ,
815
832
t ,
816
833
t .Errs ... ,
817
834
)
@@ -830,11 +847,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
830
847
831
848
%[2]s` , t .Value , buf .String (),
832
849
),
850
+ classification ,
833
851
t ,
834
852
t .Errs ... ,
835
853
)
836
854
return
837
855
case newapp.ErrPartialMatch :
856
+ classification , _ := config .ComponentInputClassificationWinners [t .Value ]
838
857
buf := & bytes.Buffer {}
839
858
fmt .Fprintf (buf , "* %s\n " , t .Match .Description )
840
859
fmt .Fprintf (buf , " Use %[1]s to specify this image or template\n \n " , t .Match .Argument )
@@ -846,11 +865,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
846
865
847
866
%[2]s` , t .Value , buf .String (),
848
867
),
868
+ classification ,
849
869
t ,
850
870
t .Errs ... ,
851
871
)
852
872
return
853
873
case newapp.ErrNoTagsFound :
874
+ classification , _ := config .ComponentInputClassificationWinners [t .Value ]
854
875
buf := & bytes.Buffer {}
855
876
fmt .Fprintf (buf , " Use --allow-missing-imagestream-tags to use this image stream\n \n " )
856
877
groups .Add (
@@ -860,6 +881,7 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
860
881
861
882
%[2]s` , t .Match .Name , buf .String (),
862
883
),
884
+ classification ,
863
885
t ,
864
886
t .Errs ... ,
865
887
)
@@ -868,13 +890,14 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
868
890
switch err {
869
891
case errNoTokenAvailable :
870
892
// TODO: improve by allowing token generation
871
- groups .Add ("" , "" , fmt .Errorf ("to install components you must be logged in with an OAuth token (instead of only a certificate)" ))
893
+ groups .Add ("" , "" , "" , fmt .Errorf ("to install components you must be logged in with an OAuth token (instead of only a certificate)" ))
872
894
case newcmd .ErrNoInputs :
873
895
// TODO: suggest things to the user
874
- groups .Add ("" , "" , usageError (commandPath , newAppNoInput , baseName , commandName ))
896
+ groups .Add ("" , "" , "" , usageError (commandPath , newAppNoInput , baseName , commandName ))
875
897
default :
876
- groups .Add ("" , "" , err )
898
+ groups .Add ("" , "" , "" , err )
877
899
}
900
+ return
878
901
}
879
902
880
903
func usageError (commandPath , format string , args ... interface {}) error {
0 commit comments