mirror of
https://github.com/containers/podman.git
synced 2025-06-03 03:07:56 +08:00
Merge pull request #10622 from cdoern/imgImportFeature
compat import imageFromSrc support for platform query parameter
This commit is contained in:
@ -166,10 +166,11 @@ func CreateImageFromSrc(w http.ResponseWriter, r *http.Request) {
|
||||
runtime := r.Context().Value("runtime").(*libpod.Runtime)
|
||||
|
||||
query := struct {
|
||||
FromSrc string `schema:"fromSrc"`
|
||||
Changes []string `schema:"changes"`
|
||||
Message string `schema:"message"`
|
||||
Repo string `shchema:"repo"`
|
||||
Changes []string `schema:"changes"`
|
||||
FromSrc string `schema:"fromSrc"`
|
||||
Message string `schema:"message"`
|
||||
Platform string `schema:"platform"`
|
||||
Repo string `shchema:"repo"`
|
||||
}{
|
||||
// This is where you can override the golang default value for one of fields
|
||||
}
|
||||
@ -192,9 +193,21 @@ func CreateImageFromSrc(w http.ResponseWriter, r *http.Request) {
|
||||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "failed to write temporary file"))
|
||||
}
|
||||
}
|
||||
|
||||
platformSpecs := strings.Split(query.Platform, "/")
|
||||
opts := entities.ImageImportOptions{
|
||||
Source: source,
|
||||
Changes: query.Changes,
|
||||
Message: query.Message,
|
||||
Reference: query.Repo,
|
||||
OS: platformSpecs[0],
|
||||
}
|
||||
if len(platformSpecs) > 1 {
|
||||
opts.Architecture = platformSpecs[1]
|
||||
}
|
||||
|
||||
imageEngine := abi.ImageEngine{Libpod: runtime}
|
||||
// TODO: add support for ImageImportOptions to take a platform parameter. Also import https://github.com/opencontainers/image-spec/tree/master/specs-go/v1 either here or within imageEngine.Import to get default platform
|
||||
report, err := imageEngine.Import(r.Context(), entities.ImageImportOptions{Source: source, Changes: query.Changes, Message: query.Message, Reference: query.Repo})
|
||||
report, err := imageEngine.Import(r.Context(), opts)
|
||||
if err != nil {
|
||||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "unable to import tarball"))
|
||||
return
|
||||
|
@ -271,8 +271,10 @@ type ImageLoadReport struct {
|
||||
}
|
||||
|
||||
type ImageImportOptions struct {
|
||||
Architecture string
|
||||
Changes []string
|
||||
Message string
|
||||
OS string
|
||||
Quiet bool
|
||||
Reference string
|
||||
SignaturePolicy string
|
||||
|
@ -388,6 +388,8 @@ func (ir *ImageEngine) Import(ctx context.Context, options entities.ImageImportO
|
||||
importOptions.CommitMessage = options.Message
|
||||
importOptions.Tag = options.Reference
|
||||
importOptions.SignaturePolicyPath = options.SignaturePolicy
|
||||
importOptions.OS = options.OS
|
||||
importOptions.Architecture = options.Architecture
|
||||
|
||||
if !options.Quiet {
|
||||
importOptions.Writer = os.Stderr
|
||||
|
@ -89,14 +89,9 @@ class ImageTestCase(APITestCase):
|
||||
|
||||
def test_create(self):
|
||||
r = requests.post(
|
||||
self.podman_url + "/v1.40/images/create?fromImage=alpine&platform=linux/amd64/v8",
|
||||
timeout=15,
|
||||
)
|
||||
self.podman_url + "/v1.40/images/create?fromImage=alpine&platform=linux/amd64/v8", timeout=15)
|
||||
self.assertEqual(r.status_code, 200, r.text)
|
||||
r = requests.post(
|
||||
self.podman_url + "/v1.40/images/create?fromSrc=-&repo=fedora&message=testing123",
|
||||
timeout=15,
|
||||
)
|
||||
r = requests.post(self.podman_url + "/v1.40/images/create?fromSrc=-&repo=fedora&message=testing123&platform=linux/amd64", timeout=15)
|
||||
self.assertEqual(r.status_code, 200, r.text)
|
||||
|
||||
def test_search_compat(self):
|
||||
|
Reference in New Issue
Block a user