mirror of
https://github.com/containers/podman.git
synced 2025-06-20 09:03:43 +08:00

Update version of docker to pull in lates code Remove kubernetes since libpod is not tied to it. Remove a few other packages that we don't seem to use. Left in the networking stuff, since we will hopefully be wiring that together. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #60 Approved by: umohnani8
34 lines
823 B
Go
34 lines
823 B
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigInspectWithRaw returns the config information with raw data
|
|
func (cli *Client) ConfigInspectWithRaw(ctx context.Context, id string) (swarm.Config, []byte, error) {
|
|
if err := cli.NewVersionError("1.30", "config inspect"); err != nil {
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
resp, err := cli.get(ctx, "/configs/"+id, nil, nil)
|
|
if err != nil {
|
|
return swarm.Config{}, nil, wrapResponseError(err, resp, "config", id)
|
|
}
|
|
defer ensureReaderClosed(resp)
|
|
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
if err != nil {
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
|
|
var config swarm.Config
|
|
rdr := bytes.NewReader(body)
|
|
err = json.NewDecoder(rdr).Decode(&config)
|
|
|
|
return config, body, err
|
|
}
|