Files
docker-machine/drivers/rackspace/client.go
Ash Wilson 2fb9061142 Turn selected logging messages to "debug".
Otherwise, they interfere with the output of `machine url` and `machine ls`. `machine url`
is more important because it breaks the export statement to configure docker if it includes
additional output.

Signed-off-by: Ash Wilson <ash.wilson@rackspace.com>
2015-01-14 22:01:32 +01:00

72 lines
1.7 KiB
Go

package rackspace
import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/docker/machine/drivers/openstack"
"github.com/rackspace/gophercloud"
"github.com/rackspace/gophercloud/rackspace"
)
func unsupportedOpErr(operation string) error {
return fmt.Errorf("Rackspace does not currently support the %s operation", operation)
}
// Client is a Rackspace specialization of the generic OpenStack driver.
type Client struct {
openstack.GenericClient
driver *Driver
}
// Authenticate creates a Rackspace-specific Gophercloud client.
func (c *Client) Authenticate(d *openstack.Driver) error {
if c.Provider != nil {
return nil
}
log.WithFields(log.Fields{
"Username": d.Username,
}).Debug("Authenticating to Rackspace.")
apiKey := c.driver.APIKey
opts := gophercloud.AuthOptions{
Username: d.Username,
APIKey: apiKey,
}
provider, err := rackspace.AuthenticatedClient(opts)
if err != nil {
return err
}
c.Provider = provider
return nil
}
// StartInstance is unfortunately not supported on Rackspace at this time.
func (c *Client) StartInstance(d *openstack.Driver) error {
return unsupportedOpErr("start")
}
// StopInstance is unfortunately not support on Rackspace at this time.
func (c *Client) StopInstance(d *openstack.Driver) error {
return unsupportedOpErr("stop")
}
// GetInstanceIpAddresses can be short-circuited with the server's AccessIPv4Addr on Rackspace.
func (c *Client) GetInstanceIpAddresses(d *openstack.Driver) ([]openstack.IpAddress, error) {
server, err := c.GetServerDetail(d)
if err != nil {
return nil, err
}
return []openstack.IpAddress{
{
Network: "public",
Address: server.AccessIPv4,
AddressType: openstack.Fixed,
},
}, nil
}