diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-23 13:15:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 13:15:47 +0100 |
commit | a8743d3327b9a97ea812632885492d95c816d79a (patch) | |
tree | a484397dcb515c20e1e6c62fe7a08510794e1581 /pkg/domain/entities | |
parent | 9d8972e0ee665325a2519eb168423d773856d563 (diff) | |
parent | eedce31eb4aa8c0678c24cdf907ebd971ce02233 (diff) | |
download | podman-a8743d3327b9a97ea812632885492d95c816d79a.tar.gz podman-a8743d3327b9a97ea812632885492d95c816d79a.tar.bz2 podman-a8743d3327b9a97ea812632885492d95c816d79a.zip |
Merge pull request #13588 from flouthoc/import-os-arch
import: allow users to set `--os`, `--arch` and `--variant` of image imports
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 93334fc6a..7081c5d25 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -279,6 +279,7 @@ type ImageLoadReport struct { type ImageImportOptions struct { Architecture string + Variant string Changes []string Message string OS string |