diff options
author | Miloslav Trmač <mitr@redhat.com> | 2018-07-28 04:27:22 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-01 18:22:59 +0000 |
commit | 4dab4d97de57759e62bb37ad5d47743e7e0e4b12 (patch) | |
tree | ae8a2825468f6b37be50f7069c1381429beeb2ff /cmd | |
parent | 86fb1bf8eb311551626e5877938a7d9d5aee6dac (diff) | |
download | podman-4dab4d97de57759e62bb37ad5d47743e7e0e4b12.tar.gz podman-4dab4d97de57759e62bb37ad5d47743e7e0e4b12.tar.bz2 podman-4dab4d97de57759e62bb37ad5d47743e7e0e4b12.zip |
RFC: Rename Image.PushImage to Image.PushImageToHeuristicDestination
The goal is to be very explicit about which functions try to heuristically
guess what is the expected format of the string. Not quite "shaming"
the users, but making sure they stand out.
RFC:
- Is this at all acceptable? Desirable?
- varlink ExportImage says "destination must have transport type";
should it be using alltransports.ParseImageReference
+ PushImageToReference, then?
(While touching the call in cmd/podman, also remove a commented-out
older version of the call.)
Should not change behavior (but does not add unit tests).
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Closes: #1176
Approved by: rhatdan
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/push.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/podman/push.go b/cmd/podman/push.go index 74882adb2..4a0286ae8 100644 --- a/cmd/podman/push.go +++ b/cmd/podman/push.go @@ -164,6 +164,5 @@ func pushCmd(c *cli.Context) error { return err } - //return runtime.PushImage(srcName, destName, options) - return newImage.PushImage(getContext(), destName, manifestType, c.String("authfile"), c.String("signature-policy"), writer, c.Bool("compress"), so, &dockerRegistryOptions, forceSecure, nil) + return newImage.PushImageToHeuristicDestination(getContext(), destName, manifestType, c.String("authfile"), c.String("signature-policy"), writer, c.Bool("compress"), so, &dockerRegistryOptions, forceSecure, nil) } |