mirror of
https://github.com/rancher/os.git
synced 2025-07-06 11:36:15 +00:00
30 lines
736 B
Go
30 lines
736 B
Go
package client
|
|
|
|
import (
|
|
"io"
|
|
"net/url"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/engine-api/types"
|
|
)
|
|
|
|
// ImageImport creates a new image based in the source options.
|
|
// It returns the JSON content in the response body.
|
|
func (cli *Client) ImageImport(ctx context.Context, options types.ImageImportOptions) (io.ReadCloser, error) {
|
|
query := url.Values{}
|
|
query.Set("fromSrc", options.SourceName)
|
|
query.Set("repo", options.RepositoryName)
|
|
query.Set("tag", options.Tag)
|
|
query.Set("message", options.Message)
|
|
for _, change := range options.Changes {
|
|
query.Add("changes", change)
|
|
}
|
|
|
|
resp, err := cli.postRaw(ctx, "/images/create", query, options.Source, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.body, nil
|
|
}
|