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