Module for handling OpenStack Nova calls.
depends: |
|
---|---|
configuration: | This module is not usable until the user, password, tenant, and auth URL are specified either in a pillar or in the minion's config file. For example: keystone.user: admin
keystone.password: verybadpass
keystone.tenant: admin
keystone.auth_url: 'http://127.0.0.1:5000/v2.0/'
# Optional
keystone.region_name: 'regionOne'
If configuration for multiple OpenStack accounts is required, they can be set up as different configuration profiles: For example: openstack1:
keystone.user: admin
keystone.password: verybadpass
keystone.tenant: admin
keystone.auth_url: 'http://127.0.0.1:5000/v2.0/'
openstack2:
keystone.user: admin
keystone.password: verybadpass
keystone.tenant: admin
keystone.auth_url: 'http://127.0.0.2:5000/v2.0/'
With this configuration in place, any of the nova functions can make use of a configuration profile by declaring it explicitly. For example: salt '*' nova.flavor_list profile=openstack1
|
Boot (create) a new instance
How long to wait, after creating the instance, for the provider to return information about it (default 300 seconds).
New in version 2014.1.0: (Hydrogen)
CLI Example:
salt '*' nova.boot myinstance flavor_id=4596 image_id=2
The flavor_id and image_id are obtained from nova.flavor_list and nova.image_list
salt '*' nova.flavor_list
salt '*' nova.image_list
Delete an instance
CLI Example:
salt '*' nova.delete 1138
Add a flavor to nova (nova flavor-create). The following parameters are required:
CLI Example:
salt '*' nova.flavor_create myflavor id=6 ram=4096 disk=10 vcpus=1
Delete a flavor from nova by id (nova flavor-delete)
CLI Example:
salt '*' nova.flavor_delete 7
Return a list of available flavors (nova flavor-list)
CLI Example:
salt '*' nova.flavor_list
Return a list of available images (nova images-list + nova image-show) If a name is provided, only that image will be displayed.
CLI Examples:
salt '*' nova.image_list
salt '*' nova.image_list myimage
Delete a key=value pair from the metadata for an image (nova image-meta set)
CLI Examples:
salt '*' nova.image_meta_delete id=6f52b2ff-0b31-4d84-8fd1-af45b84824f6 keys=cheese
salt '*' nova.image_meta_delete name=myimage keys=salad,beans
Sets a key=value pair in the metadata for an image (nova image-meta set)
CLI Examples:
salt '*' nova.image_meta_set id=6f52b2ff-0b31-4d84-8fd1-af45b84824f6 cheese=gruyere
salt '*' nova.image_meta_set name=myimage salad=pasta beans=baked
Add a keypair to nova (nova keypair-add)
CLI Examples:
salt '*' nova.keypair_add mykey pubfile='/home/myuser/.ssh/id_rsa.pub'
salt '*' nova.keypair_add mykey pubkey='ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAuGj4A7HcPLPl/etc== myuser@mybox'
Add a keypair to nova (nova keypair-delete)
CLI Example:
salt '*' nova.keypair_delete mykey'
Return a list of available keypairs (nova keypair-list)
CLI Example:
salt '*' nova.keypair_list
To maintain the feel of the nova command line, this function simply calls the server_list function.
Lock an instance
CLI Example:
salt '*' nova.lock 1138
Resume an instance
CLI Example:
salt '*' nova.resume 1138
Add a secgroup to nova (nova secgroup-create)
CLI Example:
salt '*' nova.secgroup_create mygroup 'This is my security group'
Delete a secgroup to nova (nova secgroup-delete)
CLI Example:
salt '*' nova.secgroup_delete mygroup
Return a list of available security groups (nova items-list)
CLI Example:
salt '*' nova.secgroup_list
Return list of active servers
CLI Example:
salt '*' nova.show
Return detailed list of active servers
CLI Example:
salt '*' nova.server_list_detailed
Return detailed information for an active server
CLI Example:
salt '*' nova.server_show <server_id>
To maintain the feel of the nova command line, this function simply calls the server_show function.
CLI Example:
salt '*' nova.show
Suspend an instance
CLI Example:
salt '*' nova.suspend 1138
Current Salt release: 2014.1.6
Docs for previous releases on salt.rtfd.org.