diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-28 16:02:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 16:02:56 -0400 |
commit | 97780a110b58a3bcc983bff75f3665768271631c (patch) | |
tree | ba803042c50a294dd6bc1d6f3d75f1a2be5619a5 /pkg/domain/entities/images.go | |
parent | c069e0bad9f4aa8da98c46d702f450ce41da6346 (diff) | |
parent | 3c6603a2f88ab5ba38bf58334417aaa90c458c06 (diff) | |
download | podman-97780a110b58a3bcc983bff75f3665768271631c.tar.gz podman-97780a110b58a3bcc983bff75f3665768271631c.tar.bz2 podman-97780a110b58a3bcc983bff75f3665768271631c.zip |
Merge pull request #7436 from rhatdan/variant
Add support for image pull overrides
Diffstat (limited to 'pkg/domain/entities/images.go')
-rw-r--r-- | pkg/domain/entities/images.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index cb970b09a..3a12a4e22 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -137,6 +137,8 @@ type ImagePullOptions struct { // OverrideOS will overwrite the local operating system (OS) for image // pulls. OverrideOS string + // OverrideVariant will overwrite the local variant for image pulls. + OverrideVariant string // Quiet can be specified to suppress pull progress when pulling. Ignored // for remote calls. Quiet bool |