Part of libcloud.compute.drivers.openstack View Source View In Hierarchy
Known subclasses: libcloud.compute.drivers.rackspace.RackspaceNodeDriver
OpenStack node driver.
Extra node attributes:
Method | __init__ | |
Method | ex_set_password | Sets the Node's root password. |
Method | ex_set_server_name | Sets the Node's name. |
Method | create_node | Create a new node |
Method | ex_resize | Change an existing server flavor / scale the server up or down. |
Method | ex_confirm_resize | Confirm a resize request which is currently in progress. If a resize request is not explicitly confirmed or reverted it's automatically confirmed after 24 hours. |
Method | ex_revert_resize | Revert a resize request which is currently in progress. All resizes are automatically confirmed after 24 hours if they have not already been confirmed explicitly or reverted. |
Method | ex_rebuild | Undocumented |
Method | ex_create_ip_group | Undocumented |
Method | ex_list_ip_groups | Undocumented |
Method | ex_delete_ip_group | Undocumented |
Method | ex_share_ip | Undocumented |
Method | ex_unshare_ip | Undocumented |
Method | ex_list_ip_addresses | Undocumented |
Method | ex_limits | No summary |
Method | ex_save_image | Create an image for node. |
Method | ex_delete_image | Delete an image for node. |
Method | _change_password_or_name | Undocumented |
Method | _metadata_to_xml | Undocumented |
Method | _files_to_xml | Undocumented |
Method | _reboot_node | Undocumented |
Method | _node_action | Undocumented |
Method | _to_nodes | Undocumented |
Method | _fixxpath | Undocumented |
Method | _findall | Undocumented |
Method | _to_node_from_obj | Undocumented |
Method | _to_node | Undocumented |
Method | _to_sizes | Undocumented |
Method | _to_size | Undocumented |
Method | _to_images | Undocumented |
Method | _to_image | Undocumented |
Method | _to_shared_ip_group | Undocumented |
Method | _to_ip_addresses | Undocumented |
Method | _get_size_price | Undocumented |
Inherited from OpenStackNodeDriver:
Method | __new__ | Undocumented |
Method | list_nodes | List all nodes @return: list of Node objects |
Method | list_sizes | List sizes on a provider @return: list of NodeSize
objects |
Method | list_images | List images on a provider @return: list of NodeImage
objects |
Method | ex_get_node_details | Undocumented |
Method | destroy_node | Destroy a node. |
Method | ex_soft_reboot_node | Undocumented |
Method | ex_hard_reboot_node | Undocumented |
Method | reboot_node | Reboot a node. @return: bool True if the reboot was
successful, otherwise False |
Method | _ex_connection_class_kwargs | Return extra connection keyword arguments which are passed to the Connection class constructor. |
Inherited from NodeDriver (via OpenStackNodeDriver):
Method | list_locations | List data centers for a provider @return: list of NodeLocation
objects |
Method | deploy_node | Create a new node, and start deployment. |
Method | _wait_until_running | Block until node is fully booted and has an IP address assigned. |
Method | _ssh_client_connect | Try to connect to the remote SSH server. If a connection times out or is refused it is retried up to timeout number of seconds. |
Method | _run_deployment_script | Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established. |
Parameters | key | API key or username to used (type: str) |
secret | Secret password to be used (type: str) | |
secure | Weither to use HTTPS or HTTP. Note: Some providers only support HTTPS, and it is on by default. (type: bool) | |
host | Override hostname used for connections. (type: str) | |
port | Override port used for connections. (type: int) | |
api_version | Optional API version. Only used by drivers which support multiple API versions. (type: str) |
Sets the Node's root password. This will reboot the instance to complete the operation. L{node.extra['password']} will be set to the new value if the operation was successful.
This will reboot the instance to complete the operation.
See NodeDriver.create_node
for more keyword args.
Parameters | ex_metadata | Key/Value metadata to associate with a node (type: dict ) |
ex_files | File Path => File contents to create on the node (type: dict ) |
Parameters | node | node to resize. |
node | Node | |
size | new size. | |
size | NodeSize |
For more info refer to the API documentation: http://goo.gl/zjFI1
Parameters | node | node for which the resize request will be confirmed. |
node | Node |
For more info refer to the API documentation: http://goo.gl/AizBu
Parameters | node | node for which the resize request will be reverted. |
node | Node |
Returns | dict with keys 'rate' and 'absolute' |
Parameters | node | node to use as a base for image |
node | Node | |
name | name for new image | |
name | string |
Parameters | image | the image to be deleted |
image | NodeImage |