mirror of
https://github.com/containers/podman.git
synced 2025-09-17 23:18:39 +08:00

Read the $PODMAN_VARLINK_BRIDGE environment variable (normally looks like: "ssh user@host varlink bridge") Also respect $PODMAN_VARLINK_ADDRESS as an override, if using a different podman socket than the default. Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
37 lines
896 B
Go
37 lines
896 B
Go
// +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
|
|
}
|