diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-24 12:41:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 12:41:28 +0100 |
commit | 2d46165799e39cb09a10484dc3a2720ebb8c0ec8 (patch) | |
tree | 63c85dc9926d3046e8d855f1794c054482de7226 /pkg/domain/entities | |
parent | 72660e377fe6a922cde5982da488760b48792717 (diff) | |
parent | 752680366c5896da6587d892ba719eb35dd1a859 (diff) | |
download | podman-2d46165799e39cb09a10484dc3a2720ebb8c0ec8.tar.gz podman-2d46165799e39cb09a10484dc3a2720ebb8c0ec8.tar.bz2 podman-2d46165799e39cb09a10484dc3a2720ebb8c0ec8.zip |
Merge pull request #13606 from paralin/play-kube-inmem
play: kube: support io.reader body arg and remove tempfiles
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/engine_container.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/entities/engine_container.go b/pkg/domain/entities/engine_container.go index 7cf7ca17f..6b70a3452 100644 --- a/pkg/domain/entities/engine_container.go +++ b/pkg/domain/entities/engine_container.go @@ -68,8 +68,8 @@ type ContainerEngine interface { NetworkPrune(ctx context.Context, options NetworkPruneOptions) ([]*NetworkPruneReport, error) NetworkReload(ctx context.Context, names []string, options NetworkReloadOptions) ([]*NetworkReloadReport, error) NetworkRm(ctx context.Context, namesOrIds []string, options NetworkRmOptions) ([]*NetworkRmReport, error) - PlayKube(ctx context.Context, path string, opts PlayKubeOptions) (*PlayKubeReport, error) - PlayKubeDown(ctx context.Context, path string, opts PlayKubeDownOptions) (*PlayKubeReport, error) + PlayKube(ctx context.Context, body io.Reader, opts PlayKubeOptions) (*PlayKubeReport, error) + PlayKubeDown(ctx context.Context, body io.Reader, opts PlayKubeDownOptions) (*PlayKubeReport, error) PodCreate(ctx context.Context, specg PodSpec) (*PodCreateReport, error) PodExists(ctx context.Context, nameOrID string) (*BoolReport, error) PodInspect(ctx context.Context, options PodInspectOptions) (*PodInspectReport, error) |