summaryrefslogtreecommitdiff
path: root/pkg/bindings/images
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-13 06:03:51 -0500
committerGitHub <noreply@github.com>2021-01-13 06:03:51 -0500
commit85460bc41cb67e668bc8b7196346685691953176 (patch)
treedc468234187ffb7c1c1eff0133d237babbea1b8b /pkg/bindings/images
parentf52a9eeeea75fe84fceb6aa347888d61a5cecd59 (diff)
parenta6046dceeff21bbeea71c0ab5c3d78ff931aa019 (diff)
downloadpodman-85460bc41cb67e668bc8b7196346685691953176.tar.gz
podman-85460bc41cb67e668bc8b7196346685691953176.tar.bz2
podman-85460bc41cb67e668bc8b7196346685691953176.zip
Merge pull request #8877 from rhatdan/load
Remove the ability to use [name:tag] in podman load command
Diffstat (limited to 'pkg/bindings/images')
-rw-r--r--pkg/bindings/images/images.go11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkg/bindings/images/images.go b/pkg/bindings/images/images.go
index ecdd1f553..ae6962c8c 100644
--- a/pkg/bindings/images/images.go
+++ b/pkg/bindings/images/images.go
@@ -113,20 +113,13 @@ func History(ctx context.Context, nameOrID string, options *HistoryOptions) ([]*
return history, response.Process(&history)
}
-func Load(ctx context.Context, r io.Reader, options *LoadOptions) (*entities.ImageLoadReport, error) {
- if options == nil {
- options = new(LoadOptions)
- }
+func Load(ctx context.Context, r io.Reader) (*entities.ImageLoadReport, error) {
var report entities.ImageLoadReport
conn, err := bindings.GetClient(ctx)
if err != nil {
return nil, err
}
- params, err := options.ToParams()
- if err != nil {
- return nil, err
- }
- response, err := conn.DoRequest(r, http.MethodPost, "/images/load", params, nil)
+ response, err := conn.DoRequest(r, http.MethodPost, "/images/load", nil, nil)
if err != nil {
return nil, err
}