Skip to content

Commit c205ece

Browse files
committed
Display warnings instead if the ports are not opened
While iterating on the application, it might feel weird to stop the Dev Session immediately. Plus, a lot of integration tests are not passing because of source code not strictly matching the ports declared in the (too many) Devfiles.
1 parent 2683679 commit c205ece

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

pkg/dev/podmandev/reconcile.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,11 @@ func (o *DevClient) reconcile(
119119

120120
// Check that the application is actually listening on the ports declared in the Devfile, so we are sure that port-forwarding will work
121121
appReadySpinner := log.Spinner("Waiting for the application to be ready")
122-
defer appReadySpinner.End(false)
123-
err = o.checkAppPorts(pod.Name, fwPorts)
122+
err = o.checkAppPorts(ctx, pod.Name, fwPorts)
123+
appReadySpinner.End(err == nil)
124124
if err != nil {
125-
return err
125+
log.Warningf("port-forwarding might not work correctly: %v", err)
126126
}
127-
appReadySpinner.End(true)
128127

129128
// By default, Podman will not forward to container applications listening on the loopback interface.
130129
// So we are trying to detect such cases and act accordingly.
@@ -225,12 +224,12 @@ func (o *DevClient) deployPod(ctx context.Context, options dev.StartOptions) (*c
225224
return pod, fwPorts, nil
226225
}
227226

228-
func (o *DevClient) checkAppPorts(podName string, portsToFwd []api.ForwardedPort) error {
227+
func (o *DevClient) checkAppPorts(ctx context.Context, podName string, portsToFwd []api.ForwardedPort) error {
229228
containerPortsMapping := make(map[string][]int)
230229
for _, p := range portsToFwd {
231230
containerPortsMapping[p.ContainerName] = append(containerPortsMapping[p.ContainerName], p.ContainerPort)
232231
}
233-
return port.CheckAppPortsListening(o.execClient, podName, containerPortsMapping, 1*time.Minute)
232+
return port.CheckAppPortsListening(ctx, o.execClient, podName, containerPortsMapping, 1*time.Minute)
234233
}
235234

236235
// handleLoopbackPorts tries to detect if any of the ports to forward (in fwPorts) is actually bound to the loopback interface within the specified pod.

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -344,12 +344,11 @@ func (a Adapter) Push(ctx context.Context, parameters adapters.PushParameters, c
344344

345345
// Check that the application is actually listening on the ports declared in the Devfile, so we are sure that port-forwarding will work
346346
appReadySpinner := log.Spinner("Waiting for the application to be ready")
347-
defer appReadySpinner.End(false)
348-
err = a.checkAppPorts(pod.Name, portsToForward)
347+
err = a.checkAppPorts(ctx, pod.Name, portsToForward)
348+
appReadySpinner.End(err == nil)
349349
if err != nil {
350-
return err
350+
log.Warningf("port-forwarding might not work correctly: %v", err)
351351
}
352-
appReadySpinner.End(true)
353352

354353
err = a.portForwardClient.StartPortForwarding(a.Devfile, a.ComponentName, parameters.Debug, parameters.RandomPorts, log.GetStdout(), parameters.ErrOut, nil)
355354
if err != nil {
@@ -766,14 +765,14 @@ func (a Adapter) deleteServiceBindingSecrets(serviceBindingSecretsToRemove []uns
766765
return nil
767766
}
768767

769-
func (a *Adapter) checkAppPorts(podName string, portsToFwd map[string][]devfilev1.Endpoint) error {
768+
func (a *Adapter) checkAppPorts(ctx context.Context, podName string, portsToFwd map[string][]devfilev1.Endpoint) error {
770769
containerPortsMapping := make(map[string][]int)
771770
for c, ports := range portsToFwd {
772771
for _, p := range ports {
773772
containerPortsMapping[c] = append(containerPortsMapping[c], p.TargetPort)
774773
}
775774
}
776-
return port.CheckAppPortsListening(a.execClient, podName, containerPortsMapping, 1*time.Minute)
775+
return port.CheckAppPortsListening(ctx, a.execClient, podName, containerPortsMapping, 1*time.Minute)
777776
}
778777

779778
// PushCommandsMap stores the commands to be executed as per their types.

0 commit comments

Comments
 (0)