Documentation ¶
Index ¶
- Constants
- Variables
- type Config
- type Instances
- func (i *Instances) AddSSHKeyToAllInstances(user string, keyData []byte) error
- func (i *Instances) CurrentNodeName(hostname string) (string, error)
- func (i *Instances) ExternalID(name string) (string, error)
- func (i *Instances) InstanceID(name string) (string, error)
- func (i *Instances) InstanceType(name string) (string, error)
- func (i *Instances) List(name_filter string) ([]string, error)
- func (i *Instances) NodeAddresses(name string) ([]api.NodeAddress, error)
- type LoadBalancerOpts
- type MetaData
- type MyDuration
- type Rackspace
- func (rs *Rackspace) AttachDisk(instanceID string, diskName string) (string, error)
- func (os *Rackspace) Clusters() (cloudprovider.Clusters, bool)
- func (rs *Rackspace) CreateVolume(name string, size int, tags *map[string]string) (volumeName string, err error)
- func (rs *Rackspace) DeleteVolume(volumeName string) error
- func (rs *Rackspace) DetachDisk(instanceID string, partialDiskId string) error
- func (rs *Rackspace) DiskIsAttached(diskName, instanceID string) (bool, error)
- func (rs *Rackspace) GetAttachmentDiskPath(instanceID string, diskName string) (string, error)
- func (rs *Rackspace) GetDevicePath(diskId string) string
- func (os *Rackspace) GetZone() (cloudprovider.Zone, error)
- func (rs *Rackspace) InstanceID() (string, error)
- func (os *Rackspace) Instances() (cloudprovider.Instances, bool)
- func (os *Rackspace) LoadBalancer() (cloudprovider.LoadBalancer, bool)
- func (os *Rackspace) ProviderName() string
- func (os *Rackspace) Routes() (cloudprovider.Routes, bool)
- func (os *Rackspace) ScrubDNS(nameservers, searches []string) (nsOut, srchOut []string)
- func (os *Rackspace) Zones() (cloudprovider.Zones, bool)
Constants ¶
const ProviderName = "rackspace"
Variables ¶
var ErrAttrNotFound = errors.New("Expected attribute not found")
var ErrMultipleResults = errors.New("Multiple results where only one expected")
var ErrNoAddressFound = errors.New("No address found for host")
var ErrNotFound = errors.New("Failed to find object")
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Global struct { AuthUrl string `gcfg:"auth-url"` Username string UserId string `gcfg:"user-id"` Password string ApiKey string `gcfg:"api-key"` TenantId string `gcfg:"tenant-id"` TenantName string `gcfg:"tenant-name"` DomainId string `gcfg:"domain-id"` DomainName string `gcfg:"domain-name"` Region string } LoadBalancer LoadBalancerOpts }
type Instances ¶
type Instances struct {
// contains filtered or unexported fields
}
func (*Instances) AddSSHKeyToAllInstances ¶
func (*Instances) CurrentNodeName ¶
Implementation of Instances.CurrentNodeName
func (*Instances) ExternalID ¶
ExternalID returns the cloud provider ID of the specified instance (deprecated).
func (*Instances) InstanceID ¶
InstanceID returns the cloud provider ID of the specified instance.
func (*Instances) InstanceType ¶ added in v1.2.0
InstanceType returns the type of the specified instance.
func (*Instances) NodeAddresses ¶
func (i *Instances) NodeAddresses(name string) ([]api.NodeAddress, error)
type LoadBalancerOpts ¶
type LoadBalancerOpts struct { SubnetId string `gcfg:"subnet-id"` // required CreateMonitor bool `gcfg:"create-monitor"` MonitorDelay MyDuration `gcfg:"monitor-delay"` MonitorTimeout MyDuration `gcfg:"monitor-timeout"` MonitorMaxRetries uint `gcfg:"monitor-max-retries"` }
type MyDuration ¶
encoding.TextUnmarshaler interface for time.Duration
func (*MyDuration) UnmarshalText ¶
func (d *MyDuration) UnmarshalText(text []byte) error
type Rackspace ¶
type Rackspace struct {
// contains filtered or unexported fields
}
Rackspace is an implementation of cloud provider Interface for Rackspace.
func (*Rackspace) AttachDisk ¶ added in v1.3.0
Attaches given cinder volume to the compute running kubelet
func (*Rackspace) CreateVolume ¶ added in v1.3.0
func (rs *Rackspace) CreateVolume(name string, size int, tags *map[string]string) (volumeName string, err error)
Create a volume of given size (in GiB)
func (*Rackspace) DeleteVolume ¶ added in v1.3.0
func (*Rackspace) DetachDisk ¶ added in v1.3.0
Detaches given cinder volume from the compute running kubelet
func (*Rackspace) DiskIsAttached ¶ added in v1.3.0
query if a volume is attached to a compute instance
func (*Rackspace) GetAttachmentDiskPath ¶ added in v1.3.0
Get device path of attached volume to the compute running kubelet
func (*Rackspace) GetDevicePath ¶ added in v1.3.0
GetDevicePath returns the path of an attached block storage volume, specified by its id.
func (*Rackspace) InstanceID ¶ added in v1.3.0
InstanceID returns the cloud provider ID of the kubelet's instance.
func (*Rackspace) Instances ¶
func (os *Rackspace) Instances() (cloudprovider.Instances, bool)
Instances returns an implementation of Instances for Rackspace.
func (*Rackspace) LoadBalancer ¶ added in v1.2.0
func (os *Rackspace) LoadBalancer() (cloudprovider.LoadBalancer, bool)
func (*Rackspace) ProviderName ¶
ProviderName returns the cloud provider ID.