diff options
author | baude <bbaude@redhat.com> | 2019-02-22 11:07:18 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-22 17:00:24 -0600 |
commit | 4bf973a9f61eae3b02925a42ccfa784baeb917dc (patch) | |
tree | 60e9ea8473b2f33c39e46f3954e3e4201a63dc63 /pkg/adapter/client.go | |
parent | c00bf28f24e2eed435c156cd1aabe59c10fe9824 (diff) | |
download | podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.gz podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.bz2 podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.zip |
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/adapter/client.go')
-rw-r--r-- | pkg/adapter/client.go | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/pkg/adapter/client.go b/pkg/adapter/client.go new file mode 100644 index 000000000..6512a5952 --- /dev/null +++ b/pkg/adapter/client.go @@ -0,0 +1,47 @@ +// +build remoteclient + +package adapter + +import ( + "os" + + "github.com/sirupsen/logrus" + "github.com/varlink/go/varlink" +) + +// DefaultAddress is the default address of the varlink socket +const DefaultAddress = "unix:/run/podman/io.podman" + +// Connect provides a varlink connection +func (r RemoteRuntime) Connect() (*varlink.Connection, error) { + var err error + var connection *varlink.Connection + if bridge := os.Getenv("PODMAN_VARLINK_BRIDGE"); bridge != "" { + logrus.Infof("Connecting with varlink bridge") + logrus.Debugf("%s", bridge) + connection, err = varlink.NewBridge(bridge) + } else { + address := os.Getenv("PODMAN_VARLINK_ADDRESS") + if address == "" { + address = DefaultAddress + } + logrus.Infof("Connecting with varlink address") + logrus.Debugf("%s", address) + connection, err = varlink.NewConnection(address) + } + if err != nil { + return nil, err + } + return connection, nil +} + +// RefreshConnection is used to replace the current r.Conn after things like +// using an upgraded varlink connection +func (r RemoteRuntime) RefreshConnection() error { + newConn, err := r.Connect() + if err != nil { + return err + } + r.Conn = newConn + return nil +} |