From 7fb87856aa535974241e5b1174817f3184539e22 Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Thu, 6 Apr 2023 15:15:07 +0200 Subject: [PATCH] add dry-run support to down command Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- pkg/api/dryrunclient.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/api/dryrunclient.go b/pkg/api/dryrunclient.go index 0f2663a7bd..cc7f02e54b 100644 --- a/pkg/api/dryrunclient.go +++ b/pkg/api/dryrunclient.go @@ -210,7 +210,7 @@ func (d *DryRunClient) ImagePush(ctx context.Context, ref string, options moby.I } func (d *DryRunClient) ImageRemove(ctx context.Context, imageName string, options moby.ImageRemoveOptions) ([]moby.ImageDeleteResponseItem, error) { - return nil, ErrNotImplemented + return nil, nil } func (d *DryRunClient) NetworkConnect(ctx context.Context, networkName, container string, config *network.EndpointSettings) error { @@ -229,7 +229,7 @@ func (d *DryRunClient) NetworkDisconnect(ctx context.Context, networkName, conta } func (d *DryRunClient) NetworkRemove(ctx context.Context, networkName string) error { - return ErrNotImplemented + return nil } func (d *DryRunClient) VolumeCreate(ctx context.Context, options volume.CreateOptions) (volume.Volume, error) { @@ -237,7 +237,7 @@ func (d *DryRunClient) VolumeCreate(ctx context.Context, options volume.CreateOp } func (d *DryRunClient) VolumeRemove(ctx context.Context, volumeID string, force bool) error { - return ErrNotImplemented + return nil } func (d *DryRunClient) ContainerExecCreate(ctx context.Context, container string, config moby.ExecConfig) (moby.IDResponse, error) {