Now novaclient version is v2, but in this document, it is currently v1_1. Change-Id: I4de721d2f8e8b939c3b692f6525439d88c25c7e2
6.2 KiB
Configure access and security for instances
When working with images in the SDK, you will call
novaclient
methods.
Add a keypair
To generate a keypair, call the novaclient.v1_1.keypairs.KeypairManager.create <http://docs. openstack.org/developer/python-novaclient/api/novaclient.v1_1.keypairs .html#novaclient.v1_1.keypairs.KeypairManager.create>__ method:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova = "staging"
keypair_name = nova.keypairs.create(name=keypair_name)
keypair print keypair.private_key
The Python script output looks something like this:
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEA8XkaMqInSPfy0hMfWO+OZRtIgrQAbQkNcaNHmv2GN2G6xZlb\nuBRux5Xk/6SZ
ABaNPm1nRWm/ZDHnxCsFTcAl2LYOQXx3Cl2qKNY4r2di4G48GAkd\n7k5lDP2RgQatUM8npO0CD9PU
...
mmrceYYK08/lQ7JKLmVkdzdQKt77+v1oBBuHiykLfI6h1m77NRDw9r8cV\nzczYeoALifpjTPMkKS8
ECfDCuDn/vc9K1He8CRaJHf8AMLQLM3MN
-----END RSA PRIVATE KEY-----
You typically write the private key to a file to use it later. The file must be readable and writeable by only the file owner; otherwise, the SSH client will refuse to read the private key file. The safest way is to create the file with the appropriate permissions, as shown in the following example:
import novaclient.v2.client as nvclient
import os
= nvclient.Client(...)
nova = "staging"
keypair_name = "/home/alice/id-staging"
private_key_filename = nova.keypairs.create(name=keypair_name)
keypair
# Create a file for writing that can only be read and written by
owner= os.open(private_key_filename, os.O_WRONLY | os.O_CREAT, 0o600)
fp with os.fdopen(fp, 'w') as f:
f.write(keypair.private_key)
Import a keypair
If you have already generated a keypair with the public key located
at ~/.ssh/id_rsa.pub
, pass the contents of the file to the
novaclient.v1_1.keypairs.KeypairManager.create
<http://docs.
openstack.org/developer/python-novaclient/api/novaclient.v1_1.keypairs
.html#novaclient.v1_1.keypairs.KeypairManager.create>__ method
to import the public key to Compute:
import novaclient.v2.client as nvclient
import os.path
with open(os.path.expanduser('~/.ssh/id_rsa.pub')) as f:
= f.read()
public_key = nvclient.Client(...)
nova 'mykey', public_key) nova.keypairs.create(
List keypairs
To list keypairs, call the novaclient.v1_1.keypairs.KeypairManager.list <http://docs.openstack. org/developer/python-novaclient/api/novaclient.v1_1.keypairs.html #novaclient.v1_1.keypairs.KeypairManager.list>__ method:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova = nova.keypairs.list() keypairs
Create and manage security groups
To list security groups for the current project, call the novaclient.v_1.security_groups.SecurityGroupManager.list <http://docs.openstack.org/developer/python-novaclient/api/novaclient .v1_1.security_groups.html#novaclient.v1_1.security_groups. SecurityGroupManager.list>__ method:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova = nova.security_groups.list() security_groups
To create a security group with a specified name and description, call the novaclient.v_1.security_groups.SecurityGroupManager.create <http://docs.openstack.org/developer/python-novaclient/api/novaclient. v1_1.security_groups.html#novaclient.v1_1.security_groups. SecurityGroupManager.create>__ method:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova ="web", description="Web servers") nova.security_groups.create(name
To delete a security group, call the novaclient.v_1.security_groups.SecurityGroupManager.delete <http://docs.openstack.org/developer/python-novaclient/api/novaclient. v1_1.security_groups.html#novaclient.v1_1.security_groups. SecurityGroupManager.delete>__ method, passing either a novaclient.v1_1.security_groups.SecurityGroup <http://docs.openstack.org/developer/python-novaclient/api/novaclient .v1_1.security_groups.html#novaclient.v1_1.security_groups. SecurityGroup>__ object or group ID as an argument:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova = nova.security_groups.find(name="web")
group
nova.security_groups.delete(group)# The following lines would also delete the group:
# nova.security_groups.delete(group.id)
# group.delete()
Create and manage security group rules
Access the security group rules from the rules
attribute
of a novaclient.v1_1.security_groups.SecurityGroup
<http://docs.
openstack.org/developer/python-novaclient/api/novaclient.v1_1.security
_groups.html#novaclient.v1_1.security_groups.SecurityGroup>__
object:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova = nova.security_groups.find(name="web")
group print group.rules
To add a rule to a security group, call the novaclient.v1_1.security_group_rules.SecurityGroupRuleManager.create <http://docs.openstack.org/developer/python-novaclient/api/ novaclient.v1_1.security_group_rules.html#novaclient.v1_1. security_group_rules.SecurityGroupRuleManager.create>__ method:
import novaclient.v2.client as nvclient
= nvclient.Client(...)
nova = nova.security_groups.find(name="web")
group # Add rules for ICMP, tcp/80 and tcp/443
id, ip_protocol="icmp",
nova.security_group_rules.create(group.=-1, to_port=-1)
from_portid, ip_protocol="tcp",
nova.security_group_rules.create(group.=80, to_port=80)
from_portid, ip_protocol="tcp",
nova.security_group_rules.create(group.=443, to_port=443) from_port