mirror of
https://github.com/containers/podman.git
synced 2025-05-21 17:16:22 +08:00
expose --arch-override option for pull
We no longer wish to hide the --arch-override from the cli on pulls. we now expose it. docs updated. tests already exist. Fixes: #4849 Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
@ -55,7 +55,6 @@ func init() {
|
|||||||
flags.StringVar(&pullCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
|
flags.StringVar(&pullCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
|
||||||
flags.BoolVarP(&pullCommand.Quiet, "quiet", "q", false, "Suppress output information when pulling images")
|
flags.BoolVarP(&pullCommand.Quiet, "quiet", "q", false, "Suppress output information when pulling images")
|
||||||
flags.StringVar(&pullCommand.OverrideArch, "override-arch", "", "use `ARCH` instead of the architecture of the machine for choosing images")
|
flags.StringVar(&pullCommand.OverrideArch, "override-arch", "", "use `ARCH` instead of the architecture of the machine for choosing images")
|
||||||
markFlagHidden(flags, "override-arch")
|
|
||||||
flags.StringVar(&pullCommand.OverrideOS, "override-os", "", "use `OS` instead of the running OS for choosing images")
|
flags.StringVar(&pullCommand.OverrideOS, "override-os", "", "use `OS` instead of the running OS for choosing images")
|
||||||
markFlagHidden(flags, "override-os")
|
markFlagHidden(flags, "override-os")
|
||||||
// Disabled flags for the remote client
|
// Disabled flags for the remote client
|
||||||
|
@ -69,6 +69,10 @@ The [username[:password]] to use to authenticate with the registry if required.
|
|||||||
If one or both values are not supplied, a command line prompt will appear and the
|
If one or both values are not supplied, a command line prompt will appear and the
|
||||||
value can be entered. The password is entered without echo.
|
value can be entered. The password is entered without echo.
|
||||||
|
|
||||||
|
**--override-arch**=ARCH
|
||||||
|
|
||||||
|
Override the machine's default architecture of the image to be pulled. For example, `arm`.
|
||||||
|
|
||||||
**--quiet**, **-q**
|
**--quiet**, **-q**
|
||||||
|
|
||||||
Suppress output information when pulling images
|
Suppress output information when pulling images
|
||||||
@ -134,6 +138,18 @@ Writing manifest to image destination
|
|||||||
Storing signatures
|
Storing signatures
|
||||||
03290064078cb797f3e0a530e78c20c13dd22a3dd3adf84a5da2127b48df0438
|
03290064078cb797f3e0a530e78c20c13dd22a3dd3adf84a5da2127b48df0438
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
$ podman pull --override-arch=arm arm32v7/debian:stretch
|
||||||
|
Trying to pull docker.io/arm32v7/debian:stretch...
|
||||||
|
Getting image source signatures
|
||||||
|
Copying blob b531ae4a3925 done
|
||||||
|
Copying config 3cba58dad5 done
|
||||||
|
Writing manifest to image destination
|
||||||
|
Storing signatures
|
||||||
|
3cba58dad5d9b35e755b48b634acb3fdd185ab1c996ac11510cc72c17780e13c
|
||||||
|
```
|
||||||
|
|
||||||
## FILES
|
## FILES
|
||||||
|
|
||||||
**registries.conf** (`/etc/containers/registries.conf`)
|
**registries.conf** (`/etc/containers/registries.conf`)
|
||||||
|
Reference in New Issue
Block a user