@@ -605,7 +605,29 @@ 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 := range unknown {
611
+ fmt .Fprintf (buf , "%s:\n " , argName )
612
+ for _ , classErr := range config .EnvironmentClassificationErrors {
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
+ for _ , classErr := range config .SourceClassificationErrors {
620
+ fmt .Fprintf (buf , fmt .Sprintf ("%s: %v\n " , classErr .Key , classErr .Value ))
621
+ }
622
+ for _ , classErr := range config .TemplateClassificationErrors {
623
+ fmt .Fprintf (buf , fmt .Sprintf ("%s: %v\n " , classErr .Key , classErr .Value ))
624
+ }
625
+ for _ , classErr := range config .ComponentClassificationErrors {
626
+ fmt .Fprintf (buf , fmt .Sprintf ("%s: %v\n " , classErr .Key , classErr .Value ))
627
+ }
628
+ fmt .Fprintln (buf )
629
+ }
630
+ return kcmdutil .UsageErrorf (c , heredoc .Docf (buf .String ()))
609
631
}
610
632
611
633
if config .AllowMissingImages && config .AsSearch {
@@ -701,7 +723,7 @@ func retryBuildConfig(info *resource.Info, err error) runtime.Object {
701
723
return nil
702
724
}
703
725
704
- func handleError (err error , baseName , commandName , commandPath string , config * newcmd.AppConfig , transformError func (err error , baseName , commandName , commandPath string , groups errorGroups )) error {
726
+ 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
727
if err == nil {
706
728
return nil
707
729
}
@@ -711,23 +733,19 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
711
733
}
712
734
groups := errorGroups {}
713
735
for _ , err := range errs {
714
- transformError (err , baseName , commandName , commandPath , groups )
736
+ transformError (err , baseName , commandName , commandPath , groups , config )
715
737
}
716
738
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
739
for _ , group := range groups {
729
740
fmt .Fprint (buf , kcmdutil .MultipleErrors ("error: " , group .errs ))
741
+ if len (group .classification ) > 0 {
742
+ fmt .Fprintln (buf )
743
+ }
744
+ fmt .Fprintf (buf , group .classification )
730
745
if len (group .suggestion ) > 0 {
746
+ if len (group .classification ) > 0 {
747
+ fmt .Fprintln (buf )
748
+ }
731
749
fmt .Fprintln (buf )
732
750
}
733
751
fmt .Fprint (buf , group .suggestion )
@@ -736,20 +754,22 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
736
754
}
737
755
738
756
type errorGroup struct {
739
- errs []error
740
- suggestion string
757
+ errs []error
758
+ suggestion string
759
+ classification string
741
760
}
742
761
type errorGroups map [string ]errorGroup
743
762
744
- func (g errorGroups ) Add (group string , suggestion string , err error , errs ... error ) {
763
+ func (g errorGroups ) Add (group string , suggestion string , classification string , err error , errs ... error ) {
745
764
all := g [group ]
746
765
all .errs = append (all .errs , errs ... )
747
766
all .errs = append (all .errs , err )
748
767
all .suggestion = suggestion
768
+ all .classification = classification
749
769
g [group ] = all
750
770
}
751
771
752
- func transformRunError (err error , baseName , commandName , commandPath string , groups errorGroups ) {
772
+ func transformRunError (err error , baseName , commandName , commandPath string , groups errorGroups , config * newcmd. AppConfig ) {
753
773
switch t := err .(type ) {
754
774
case newcmd.ErrRequiresExplicitAccess :
755
775
if t .Input .Token != nil && t .Input .Token .ServiceAccount {
@@ -762,6 +782,7 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
762
782
You can see more information about the image by adding the --dry-run flag.
763
783
If you trust the provided image, include the flag --grant-install-rights.` ,
764
784
),
785
+ "" ,
765
786
fmt .Errorf ("installing %q requires an 'installer' service account with project editor access" , t .Match .Value ),
766
787
)
767
788
} else {
@@ -774,11 +795,19 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
774
795
You can see more information about the image by adding the --dry-run flag.
775
796
If you trust the provided image, include the flag --grant-install-rights.` ,
776
797
),
798
+ "" ,
777
799
fmt .Errorf ("installing %q requires that you grant the image access to run with your credentials" , t .Match .Value ),
778
800
)
779
801
}
780
802
return
781
803
case newapp.ErrNoMatch :
804
+ classification , _ := config .ClassificationWinners [t .Value ]
805
+ if classification .IncludeGitErrors {
806
+ notGitRepo , ok := config .SourceClassificationErrors [t .Value ]
807
+ if ok {
808
+ t .Errs = append (t .Errs , notGitRepo .Value )
809
+ }
810
+ }
782
811
groups .Add (
783
812
"no-matches" ,
784
813
heredoc .Docf (`
@@ -794,11 +823,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
794
823
795
824
See '%[1]s -h' for examples.` , commandPath ,
796
825
),
826
+ heredoc .Docf (classification .String ()),
797
827
t ,
798
828
t .Errs ... ,
799
829
)
800
830
return
801
831
case newapp.ErrMultipleMatches :
832
+ classification , _ := config .ClassificationWinners [t .Value ]
802
833
buf := & bytes.Buffer {}
803
834
for i , match := range t .Matches {
804
835
@@ -812,6 +843,7 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
812
843
813
844
%[2]sTo view a full list of matches, use '%[3]s %[4]s -S %[1]s'` , t .Value , buf .String (), baseName , commandName ,
814
845
),
846
+ classification .String (),
815
847
t ,
816
848
t .Errs ... ,
817
849
)
@@ -830,11 +862,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
830
862
831
863
%[2]s` , t .Value , buf .String (),
832
864
),
865
+ classification .String (),
833
866
t ,
834
867
t .Errs ... ,
835
868
)
836
869
return
837
870
case newapp.ErrPartialMatch :
871
+ classification , _ := config .ClassificationWinners [t .Value ]
838
872
buf := & bytes.Buffer {}
839
873
fmt .Fprintf (buf , "* %s\n " , t .Match .Description )
840
874
fmt .Fprintf (buf , " Use %[1]s to specify this image or template\n \n " , t .Match .Argument )
@@ -846,11 +880,13 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
846
880
847
881
%[2]s` , t .Value , buf .String (),
848
882
),
883
+ classification .String (),
849
884
t ,
850
885
t .Errs ... ,
851
886
)
852
887
return
853
888
case newapp.ErrNoTagsFound :
889
+ classification , _ := config .ClassificationWinners [t .Value ]
854
890
buf := & bytes.Buffer {}
855
891
fmt .Fprintf (buf , " Use --allow-missing-imagestream-tags to use this image stream\n \n " )
856
892
groups .Add (
@@ -860,6 +896,7 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
860
896
861
897
%[2]s` , t .Match .Name , buf .String (),
862
898
),
899
+ classification .String (),
863
900
t ,
864
901
t .Errs ... ,
865
902
)
@@ -868,13 +905,14 @@ func transformRunError(err error, baseName, commandName, commandPath string, gro
868
905
switch err {
869
906
case errNoTokenAvailable :
870
907
// 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)" ))
908
+ groups .Add ("" , "" , "" , fmt .Errorf ("to install components you must be logged in with an OAuth token (instead of only a certificate)" ))
872
909
case newcmd .ErrNoInputs :
873
910
// TODO: suggest things to the user
874
- groups .Add ("" , "" , usageError (commandPath , newAppNoInput , baseName , commandName ))
911
+ groups .Add ("" , "" , "" , usageError (commandPath , newAppNoInput , baseName , commandName ))
875
912
default :
876
- groups .Add ("" , "" , err )
913
+ groups .Add ("" , "" , "" , err )
877
914
}
915
+ return
878
916
}
879
917
880
918
func usageError (commandPath , format string , args ... interface {}) error {
0 commit comments