diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-09 14:51:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 14:51:02 +0200 |
commit | 655139fdda20819160b2baad840429a80d6285e5 (patch) | |
tree | cc9f24c405c4bfbf636a0ada96fa22f11bba87c0 /pkg/domain/infra/tunnel/containers.go | |
parent | 46227e0b030ac4180d8f3179f2b33c5d6d8fd200 (diff) | |
parent | 7a3bfbf0767675472451d7328cada39b5797cdf8 (diff) | |
download | podman-655139fdda20819160b2baad840429a80d6285e5.tar.gz podman-655139fdda20819160b2baad840429a80d6285e5.tar.bz2 podman-655139fdda20819160b2baad840429a80d6285e5.zip |
Merge pull request #5760 from vrothberg/v2-logs
podmanV2: implement logs
Diffstat (limited to 'pkg/domain/infra/tunnel/containers.go')
-rw-r--r-- | pkg/domain/infra/tunnel/containers.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go index b22c6e3ba..d40f0da36 100644 --- a/pkg/domain/infra/tunnel/containers.go +++ b/pkg/domain/infra/tunnel/containers.go @@ -305,6 +305,11 @@ func (ic *ContainerEngine) ContainerCreate(ctx context.Context, s *specgen.SpecG return &entities.ContainerCreateReport{Id: response.ID}, nil } +func (ic *ContainerEngine) ContainerLogs(ctx context.Context, containers []string, options entities.ContainerLogsOptions) error { + // The endpoint is not ready yet and requires some more work. + return errors.New("not implemented yet") +} + func (ic *ContainerEngine) ContainerAttach(ctx context.Context, nameOrId string, options entities.AttachOptions) error { return errors.New("not implemented") } |