@@ -13,13 +13,11 @@ import (
13
13
"github.com/openshift/odo/pkg/log"
14
14
"github.com/openshift/odo/pkg/machineoutput"
15
15
"github.com/openshift/odo/pkg/odo/genericclioptions"
16
- "github.com/openshift/odo/pkg/odo/util/experimental"
17
16
"github.com/openshift/odo/pkg/odo/util/pushtarget"
18
17
"github.com/openshift/odo/pkg/util"
19
18
"github.com/pkg/errors"
20
19
"github.com/spf13/cobra"
21
20
"gopkg.in/yaml.v2"
22
- "k8s.io/klog"
23
21
ktemplates "k8s.io/kubectl/pkg/util/templates"
24
22
)
25
23
@@ -62,11 +60,7 @@ func (o *DescribeComponentOptions) Complete(name string, cmd *cobra.Command, arg
62
60
tasks .Add (util.ConcurrentTask {ToRun : func (errChannel chan error ) {
63
61
catalogList , err := catalog .ListComponents (o .Client )
64
62
if err != nil {
65
- if experimental .IsExperimentalModeEnabled () {
66
- klog .V (4 ).Info ("Please log in to an OpenShift cluster to list OpenShift/s2i components" )
67
- } else {
68
- errChannel <- err
69
- }
63
+ errChannel <- err
70
64
}
71
65
for _ , image := range catalogList .Items {
72
66
if image .Name == o .componentName {
@@ -76,18 +70,16 @@ func (o *DescribeComponentOptions) Complete(name string, cmd *cobra.Command, arg
76
70
}})
77
71
}
78
72
79
- if experimental .IsExperimentalModeEnabled () {
80
- tasks .Add (util.ConcurrentTask {ToRun : func (errChannel chan error ) {
81
- catalogDevfileList , err := catalog .ListDevfileComponents ("" )
82
- if catalogDevfileList .DevfileRegistries == nil {
83
- log .Warning ("Please run 'odo registry add <registry name> <registry URL>' to add registry for listing devfile components\n " )
84
- }
85
- if err != nil {
86
- errChannel <- err
87
- }
88
- o .GetDevfileComponentsByName (catalogDevfileList )
89
- }})
90
- }
73
+ tasks .Add (util.ConcurrentTask {ToRun : func (errChannel chan error ) {
74
+ catalogDevfileList , err := catalog .ListDevfileComponents ("" )
75
+ if catalogDevfileList .DevfileRegistries == nil {
76
+ log .Warning ("Please run 'odo registry add <registry name> <registry URL>' to add registry for listing devfile components\n " )
77
+ }
78
+ if err != nil {
79
+ errChannel <- err
80
+ }
81
+ o .GetDevfileComponentsByName (catalogDevfileList )
82
+ }})
91
83
92
84
return tasks .Run ()
93
85
}
@@ -103,50 +95,48 @@ func (o *DescribeComponentOptions) Validate() (err error) {
103
95
104
96
// Run contains the logic for the command associated with DescribeComponentOptions
105
97
func (o * DescribeComponentOptions ) Run () (err error ) {
106
- if experimental .IsExperimentalModeEnabled () {
107
- w := tabwriter .NewWriter (os .Stdout , 5 , 2 , 3 , ' ' , tabwriter .TabIndent )
108
- if log .IsJSON () {
109
- if len (o .devfileComponents ) > 0 {
110
- for _ , devfileComponent := range o .devfileComponents {
111
- devObj , err := GetDevfile (devfileComponent )
112
- if err != nil {
113
- return err
114
- }
115
-
116
- machineoutput .OutputSuccess (devObj )
98
+ w := tabwriter .NewWriter (os .Stdout , 5 , 2 , 3 , ' ' , tabwriter .TabIndent )
99
+ if log .IsJSON () {
100
+ if len (o .devfileComponents ) > 0 {
101
+ for _ , devfileComponent := range o .devfileComponents {
102
+ devObj , err := GetDevfile (devfileComponent )
103
+ if err != nil {
104
+ return err
117
105
}
106
+
107
+ machineoutput .OutputSuccess (devObj )
118
108
}
119
- } else {
120
- if len ( o . devfileComponents ) > 1 {
121
- log . Warningf ( "There are multiple components named \" %s \" in different multiple devfile registries. \n " , o . componentName )
122
- }
123
- if len ( o . devfileComponents ) > 0 {
124
- fmt . Fprintln ( w , "Devfile Component(s):" )
125
-
126
- for _ , devfileComponent := range o . devfileComponents {
127
- fmt . Fprintln ( w , " \n * Registry: " + devfileComponent . Registry . Name )
128
-
129
- devObj , err := GetDevfile ( devfileComponent )
130
- if err != nil {
131
- return err
132
- }
133
-
134
- projects := devObj . Data . GetStarterProjects ()
135
- // only print project info if there is at least one project in the devfile
136
- err = o . PrintDevfileStarterProjects ( w , projects , devObj )
137
- if err != nil {
138
- return err
139
- }
109
+ }
110
+ } else {
111
+ if len ( o . devfileComponents ) > 1 {
112
+ log . Warningf ( "There are multiple components named \" %s \" in different multiple devfile registries. \n " , o . componentName )
113
+ }
114
+ if len ( o . devfileComponents ) > 0 {
115
+ fmt . Fprintln ( w , "Devfile Component(s):" )
116
+
117
+ for _ , devfileComponent := range o . devfileComponents {
118
+ fmt . Fprintln ( w , " \n * Registry: " + devfileComponent . Registry . Name )
119
+
120
+ devObj , err := GetDevfile ( devfileComponent )
121
+ if err != nil {
122
+ return err
123
+ }
124
+
125
+ projects := devObj . Data . GetStarterProjects ()
126
+ // only print project info if there is at least one project in the devfile
127
+ err = o . PrintDevfileStarterProjects ( w , projects , devObj )
128
+ if err != nil {
129
+ return err
140
130
}
141
- } else {
142
- fmt .Fprintln (w , "There are no Odo devfile components with the name \" " + o .componentName + "\" " )
143
- }
144
- if o .component != "" {
145
- fmt .Fprintln (w , "\n S2I Based Components:" )
146
- fmt .Fprintln (w , "-" + o .component )
147
131
}
148
- fmt .Fprintln (w )
132
+ } else {
133
+ fmt .Fprintln (w , "There are no Odo devfile components with the name \" " + o .componentName + "\" " )
134
+ }
135
+ if o .component != "" {
136
+ fmt .Fprintln (w , "\n S2I Based Components:" )
137
+ fmt .Fprintln (w , "-" + o .component )
149
138
}
139
+ fmt .Fprintln (w )
150
140
}
151
141
152
142
return nil
0 commit comments