@@ -161,8 +161,11 @@ type ObjectGeneratorOptions struct {
161
161
}
162
162
163
163
type AppOptions struct {
164
- genericclioptions.IOStreams
165
164
* ObjectGeneratorOptions
165
+
166
+ RESTClientGetter genericclioptions.RESTClientGetter
167
+
168
+ genericclioptions.IOStreams
166
169
}
167
170
168
171
type versionedPrintObj struct {
@@ -367,6 +370,8 @@ func NewCmdNewApplication(name, baseName string, f kcmdutil.Factory, streams gen
367
370
368
371
// Complete sets any default behavior for the command
369
372
func (o * AppOptions ) Complete (baseName , commandName string , f kcmdutil.Factory , c * cobra.Command , args []string ) error {
373
+ o .RESTClientGetter = f
374
+
370
375
cmdutil .WarnAboutCommaSeparation (o .ErrOut , o .ObjectGeneratorOptions .Config .TemplateParameters , "--param" )
371
376
err := o .ObjectGeneratorOptions .Complete (baseName , commandName , f , c , args )
372
377
if err != nil {
@@ -510,7 +515,7 @@ func (o *AppOptions) RunNewApp() error {
510
515
511
516
switch {
512
517
case len (installing ) == 1 :
513
- return followInstallation (config , installing [0 ], o .LogsForObject )
518
+ return followInstallation (config , o . RESTClientGetter , installing [0 ], o .LogsForObject )
514
519
case len (installing ) > 1 :
515
520
for i := range installing {
516
521
fmt .Fprintf (out , "%sTrack installation of %s with '%s logs %s'.\n " , indent , installing [i ].Name , o .BaseName , installing [i ].Name )
@@ -554,7 +559,7 @@ func getServices(items []runtime.Object) []*corev1.Service {
554
559
return svc
555
560
}
556
561
557
- func followInstallation (config * newcmd.AppConfig , pod * corev1.Pod , logsForObjectFn polymorphichelpers.LogsForObjectFunc ) error {
562
+ func followInstallation (config * newcmd.AppConfig , clientGetter genericclioptions. RESTClientGetter , pod * corev1.Pod , logsForObjectFn polymorphichelpers.LogsForObjectFunc ) error {
558
563
fmt .Fprintf (config .Out , "--> Installing ...\n " )
559
564
560
565
// we cannot retrieve logs until the pod is out of pending
@@ -567,12 +572,14 @@ func followInstallation(config *newcmd.AppConfig, pod *corev1.Pod, logsForObject
567
572
opts := & kcmd.LogsOptions {
568
573
Namespace : pod .Namespace ,
569
574
ResourceArg : pod .Name ,
570
- Options : & kapi .PodLogOptions {
575
+ Options : & corev1 .PodLogOptions {
571
576
Follow : true ,
572
577
Container : pod .Spec .Containers [0 ].Name ,
573
578
},
574
- LogsForObject : logsForObjectFn ,
575
- IOStreams : genericclioptions.IOStreams {Out : config .Out },
579
+ RESTClientGetter : clientGetter ,
580
+ ConsumeRequestFn : kcmd .DefaultConsumeRequestFn ,
581
+ LogsForObject : logsForObjectFn ,
582
+ IOStreams : genericclioptions.IOStreams {Out : config .Out },
576
583
}
577
584
logErr := opts .RunLogs ()
578
585
0 commit comments