mirror of
https://github.com/containers/podman.git
synced 2025-06-22 18:08:11 +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
14 lines
378 B
Go
14 lines
378 B
Go
package client
|
|
|
|
import "golang.org/x/net/context"
|
|
|
|
// SecretRemove removes a Secret.
|
|
func (cli *Client) SecretRemove(ctx context.Context, id string) error {
|
|
if err := cli.NewVersionError("1.25", "secret remove"); err != nil {
|
|
return err
|
|
}
|
|
resp, err := cli.delete(ctx, "/secrets/"+id, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return wrapResponseError(err, resp, "secret", id)
|
|
}
|