Skip to content

Commit 57da852

Browse files
committed
Make Devfile the default deployment mechanism for odo
**What type of PR is this?** > Uncomment only one ` /kind` line, and delete the rest. > For example, `> /kind bug` would simply become: `/kind bug` /kind feature **What does does this PR do / why we need it**: Makes Devfile the default deployment mechanism, removing S2I in favour of Devfile deployment. **Which issue(s) this PR fixes**: Closes redhat-developer#3550 **How to test changes / Special notes to the reviewer**: Run: ```sh odo preference set experimental false odo create --starter nodejs odo push ```
1 parent bd770a0 commit 57da852

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+765
-870
lines changed

pkg/component/component.go

+11-12
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import (
2525
parsercommon "github.com/openshift/odo/pkg/devfile/parser/data/common"
2626
"github.com/openshift/odo/pkg/log"
2727
"github.com/openshift/odo/pkg/occlient"
28-
"github.com/openshift/odo/pkg/odo/util/experimental"
2928
"github.com/openshift/odo/pkg/odo/util/validation"
3029
"github.com/openshift/odo/pkg/preference"
3130
"github.com/openshift/odo/pkg/storage"
@@ -565,10 +564,10 @@ func ensureAndLogProperResourceUsage(resourceMin, resourceMax *string, resourceN
565564
// envSpecificInfo: Component environment specific information, available if uses devfile
566565
// cmpExist: true if components exists in the cluster
567566
// endpointMap: value is devfile endpoint entry, key is the TargetPort for each enpoint entry
567+
// isS2I: Legacy option. Set as true if you want to use the old S2I method as it differentiates slightly.
568568
// Returns:
569569
// err: Errors if any else nil
570-
func ApplyConfig(client *occlient.Client, kClient *kclient.Client, componentConfig config.LocalConfigInfo, envSpecificInfo envinfo.EnvSpecificInfo, stdout io.Writer, cmpExist bool, endpointMap map[int32]parsercommon.Endpoint) (err error) {
571-
isExperimentalModeEnabled := experimental.IsExperimentalModeEnabled()
570+
func ApplyConfig(client *occlient.Client, kClient *kclient.Client, componentConfig config.LocalConfigInfo, envSpecificInfo envinfo.EnvSpecificInfo, stdout io.Writer, cmpExist bool, endpointMap map[int32]parsercommon.Endpoint, isS2I bool) (err error) {
572571

573572
if client == nil {
574573
var err error
@@ -580,7 +579,7 @@ func ApplyConfig(client *occlient.Client, kClient *kclient.Client, componentConf
580579
client.Namespace = kClient.Namespace
581580
}
582581

583-
if !isExperimentalModeEnabled {
582+
if isS2I {
584583
// if component exist then only call the update function
585584
if cmpExist {
586585
if err = Update(client, componentConfig, componentConfig.GetSourceLocation(), stdout); err != nil {
@@ -591,7 +590,7 @@ func ApplyConfig(client *occlient.Client, kClient *kclient.Client, componentConf
591590

592591
var componentName string
593592
var applicationName string
594-
if !isExperimentalModeEnabled || kClient == nil {
593+
if isS2I || kClient == nil {
595594
componentName = componentConfig.GetName()
596595
applicationName = componentConfig.GetApplication()
597596
} else {
@@ -605,13 +604,13 @@ func ApplyConfig(client *occlient.Client, kClient *kclient.Client, componentConf
605604
}
606605

607606
return urlpkg.Push(client, kClient, urlpkg.PushParameters{
608-
ComponentName: componentName,
609-
ApplicationName: applicationName,
610-
ConfigURLs: componentConfig.GetURL(),
611-
EnvURLS: envSpecificInfo.GetURL(),
612-
IsRouteSupported: isRouteSupported,
613-
IsExperimentalModeEnabled: isExperimentalModeEnabled,
614-
EndpointMap: endpointMap,
607+
ComponentName: componentName,
608+
ApplicationName: applicationName,
609+
ConfigURLs: componentConfig.GetURL(),
610+
EnvURLS: envSpecificInfo.GetURL(),
611+
IsRouteSupported: isRouteSupported,
612+
EndpointMap: endpointMap,
613+
IsS2I: isS2I,
615614
})
616615
}
617616

pkg/component/component_full_description.go

+10-13
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"github.com/openshift/odo/pkg/config"
99
"github.com/openshift/odo/pkg/log"
1010
"github.com/openshift/odo/pkg/occlient"
11-
"github.com/openshift/odo/pkg/odo/util/experimental"
1211
"github.com/openshift/odo/pkg/storage"
1312
urlpkg "github.com/openshift/odo/pkg/url"
1413
corev1 "k8s.io/api/core/v1"
@@ -192,22 +191,20 @@ func (cfd *ComponentFullDescription) Print(client *occlient.Client) error {
192191
if len(cfd.Spec.URL.Items) > 0 {
193192
var output string
194193

195-
if !experimental.IsExperimentalModeEnabled() {
196-
// if the component is not pushed
197-
for i, componentURL := range cfd.Spec.URL.Items {
198-
if componentURL.Status.State == urlpkg.StateTypePushed {
199-
output += fmt.Sprintf(" · %v exposed via %v\n", urlpkg.GetURLString(componentURL.Spec.Protocol, componentURL.Spec.Host, "", experimental.IsExperimentalModeEnabled()), componentURL.Spec.Port)
194+
for i, componentURL := range cfd.Spec.URL.Items {
195+
if componentURL.Status.State == urlpkg.StateTypePushed {
196+
output += fmt.Sprintf(" · %v exposed via %v\n", urlpkg.GetURLString(componentURL.Spec.Protocol, componentURL.Spec.Host, "", true), componentURL.Spec.Port)
197+
} else {
198+
var p string
199+
if i >= len(cfd.Spec.Ports) {
200+
p = cfd.Spec.Ports[len(cfd.Spec.Ports)-1]
200201
} else {
201-
var p string
202-
if i >= len(cfd.Spec.Ports) {
203-
p = cfd.Spec.Ports[len(cfd.Spec.Ports)-1]
204-
} else {
205-
p = cfd.Spec.Ports[i]
206-
}
207-
output += fmt.Sprintf(" · URL named %s will be exposed via %v\n", componentURL.Name, p)
202+
p = cfd.Spec.Ports[i]
208203
}
204+
output += fmt.Sprintf(" · URL named %s will be exposed via %v\n", componentURL.Name, p)
209205
}
210206
}
207+
211208
// Cut off the last newline and output
212209
if len(output) > 0 {
213210
output = output[:len(output)-1]

pkg/debug/portforward.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ func NewDefaultPortForwarder(componentName, appName string, projectName string,
4141
// portPair is a pair of port in format "localPort:RemotePort" that is to be forwarded
4242
// stop Chan is used to stop port forwarding
4343
// ready Chan is used to signal failure to the channel receiver
44-
func (f *DefaultPortForwarder) ForwardPorts(portPair string, stopChan, readyChan chan struct{}, isExperimental bool) error {
44+
func (f *DefaultPortForwarder) ForwardPorts(portPair string, stopChan, readyChan chan struct{}, isDevfile bool) error {
4545
var pod *corev1.Pod
4646
var conf *rest.Config
4747
var err error
4848

49-
if f.kClient != nil && isExperimental {
49+
if f.kClient != nil && isDevfile {
5050
conf, err = f.kClient.KubeConfig.ClientConfig()
5151
if err != nil {
5252
return err
@@ -78,7 +78,7 @@ func (f *DefaultPortForwarder) ForwardPorts(portPair string, stopChan, readyChan
7878
}
7979

8080
var req *rest.Request
81-
if f.kClient != nil && isExperimental {
81+
if f.kClient != nil && isDevfile {
8282
req = f.kClient.GeneratePortForwardReq(pod.Name)
8383
} else {
8484
req = f.client.BuildPortForwardReq(pod.Name)

pkg/devfile/adapters/kubernetes/component/adapter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func (a Adapter) Push(parameters common.PushParameters) (err error) {
163163
return errors.Wrapf(err, "unable to get pod for component %s", a.ComponentName)
164164
}
165165

166-
err = component.ApplyConfig(nil, &a.Client, config.LocalConfigInfo{}, parameters.EnvSpecificInfo, color.Output, componentExists, endpointsMap)
166+
err = component.ApplyConfig(nil, &a.Client, config.LocalConfigInfo{}, parameters.EnvSpecificInfo, color.Output, componentExists, endpointsMap, false)
167167
if err != nil {
168168
odoutil.LogErrorAndExit(err, "Failed to update config to component deployed.")
169169
}

pkg/devfile/validate/components_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func TestValidateComponents(t *testing.T) {
126126
got := validateComponents(components)
127127
want := "size randomgarbage for volume component myvol is invalid"
128128

129-
if !strings.Contains(got.Error(), want) {
129+
if got != nil && !strings.Contains(got.Error(), want) {
130130
t.Errorf("TestValidateComponents error - got: '%v', want substring: '%v'", got.Error(), want)
131131
}
132132
})

pkg/occlient/occlient.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import (
2222
"github.com/openshift/odo/pkg/config"
2323
"github.com/openshift/odo/pkg/devfile/adapters/common"
2424
"github.com/openshift/odo/pkg/log"
25-
"github.com/openshift/odo/pkg/odo/util/experimental"
2625
"github.com/openshift/odo/pkg/preference"
2726
"github.com/openshift/odo/pkg/util"
2827

@@ -719,11 +718,7 @@ func (c *Client) GetImageStream(imageNS string, imageName string, imageTag strin
719718
}
720719
}
721720
if e != nil && err != nil {
722-
// Imagestream not found in openshift and current namespaces
723-
if experimental.IsExperimentalModeEnabled() {
724-
return nil, fmt.Errorf("component type %q not found", imageName)
725-
}
726-
return nil, err
721+
return nil, fmt.Errorf("component type %q not found", imageName)
727722
}
728723

729724
// Required tag not in openshift and current namespaces

pkg/odo/cli/catalog/describe/component.go

+52-57
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import (
1313
"github.com/openshift/odo/pkg/log"
1414
"github.com/openshift/odo/pkg/machineoutput"
1515
"github.com/openshift/odo/pkg/odo/genericclioptions"
16-
"github.com/openshift/odo/pkg/odo/util/experimental"
1716
"github.com/openshift/odo/pkg/odo/util/pushtarget"
1817
"github.com/openshift/odo/pkg/util"
1918
"github.com/pkg/errors"
@@ -62,11 +61,11 @@ func (o *DescribeComponentOptions) Complete(name string, cmd *cobra.Command, arg
6261
tasks.Add(util.ConcurrentTask{ToRun: func(errChannel chan error) {
6362
catalogList, err := catalog.ListComponents(o.Client)
6463
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-
}
64+
// TODO:
65+
// This MAY have to change in the future.. There is no good way to determine whether the user
66+
// wants to list OpenShift or Kubernetes components. So we simply just warn in debug V(4) if
67+
// we are unable to list anything from OpenShift.
68+
klog.V(4).Info("Please log in to an OpenShift cluster to list OpenShift/s2i components")
7069
}
7170
for _, image := range catalogList.Items {
7271
if image.Name == o.componentName {
@@ -76,18 +75,16 @@ func (o *DescribeComponentOptions) Complete(name string, cmd *cobra.Command, arg
7675
}})
7776
}
7877

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-
}
78+
tasks.Add(util.ConcurrentTask{ToRun: func(errChannel chan error) {
79+
catalogDevfileList, err := catalog.ListDevfileComponents("")
80+
if catalogDevfileList.DevfileRegistries == nil {
81+
log.Warning("Please run 'odo registry add <registry name> <registry URL>' to add registry for listing devfile components\n")
82+
}
83+
if err != nil {
84+
errChannel <- err
85+
}
86+
o.GetDevfileComponentsByName(catalogDevfileList)
87+
}})
9188

9289
return tasks.Run()
9390
}
@@ -103,50 +100,48 @@ func (o *DescribeComponentOptions) Validate() (err error) {
103100

104101
// Run contains the logic for the command associated with DescribeComponentOptions
105102
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)
103+
w := tabwriter.NewWriter(os.Stdout, 5, 2, 3, ' ', tabwriter.TabIndent)
104+
if log.IsJSON() {
105+
if len(o.devfileComponents) > 0 {
106+
for _, devfileComponent := range o.devfileComponents {
107+
devObj, err := GetDevfile(devfileComponent)
108+
if err != nil {
109+
return err
117110
}
111+
112+
machineoutput.OutputSuccess(devObj)
118113
}
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-
}
114+
}
115+
} else {
116+
if len(o.devfileComponents) > 1 {
117+
log.Warningf("There are multiple components named \"%s\" in different multiple devfile registries.\n", o.componentName)
118+
}
119+
if len(o.devfileComponents) > 0 {
120+
fmt.Fprintln(w, "Devfile Component(s):")
121+
122+
for _, devfileComponent := range o.devfileComponents {
123+
fmt.Fprintln(w, "\n* Registry: "+devfileComponent.Registry.Name)
124+
125+
devObj, err := GetDevfile(devfileComponent)
126+
if err != nil {
127+
return err
128+
}
129+
130+
projects := devObj.Data.GetStarterProjects()
131+
// only print project info if there is at least one project in the devfile
132+
err = o.PrintDevfileStarterProjects(w, projects, devObj)
133+
if err != nil {
134+
return err
140135
}
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, "\nS2I Based Components:")
146-
fmt.Fprintln(w, "-"+o.component)
147136
}
148-
fmt.Fprintln(w)
137+
} else {
138+
fmt.Fprintln(w, "There are no Odo devfile components with the name \""+o.componentName+"\"")
139+
}
140+
if o.component != "" {
141+
fmt.Fprintln(w, "\nS2I Based Components:")
142+
fmt.Fprintln(w, "-"+o.component)
149143
}
144+
fmt.Fprintln(w)
150145
}
151146

152147
return nil

0 commit comments

Comments
 (0)