Joe Gordon
Architecture Diagram
github.com/openstack/python-novaclient
pip install -U python-novaclient
CLI
Python Library
$ nova --debug boot --flavor=m1.tiny --image=cirros-0.3.1-x86_64-uec\
--key-name=mykey myinstance
import os
import time
from novaclient.v1_1 import client
def get_nova_creds():
d = {}
d['username'] = os.environ['OS_USERNAME']
d['api_key'] = os.environ['OS_PASSWORD']
d['auth_url'] = os.environ['OS_AUTH_URL']
d['project_id'] = os.environ['OS_TENANT_NAME']
return d
nova = client.Client(**get_nova_creds())
if not nova.keypairs.findall(name="mykey"):
with open(os.path.expanduser('~/.ssh/id_rsa.pub')) as fpubkey:
nova.keypairs.create(name="mykey", public_key=fpubkey.read())
image = nova.images.find(name="cirros")
flavor = nova.flavors.find(name="m1.tiny")
instance = nova.servers.create(name="test", image=image, flavor=flavor, key_name="mykey")
# Poll at 5 second intervals, until the status is no longer 'BUILD'
status = instance.status
while status == 'BUILD':
time.sleep(5)
# Retrieve the instance again so the status field updates
instance = nova.servers.get(instance.id)
status = instance.status
print "status: %s" % status
$ nova --debug boot --flavor=m1.tiny --image=cirros-0.3.1-x86_64-uec\
--key-name=mykey myinstance
POST http://$KEYSTONE_IP:5000/v2.0/tokens
GET http://$NOVA_IP:8774/v2/$UUID/images/detail
GET http://$NOVA_IP:8774/v2/$UUID/flavors/detail
POST http://$NOVA_IP:8774/v2/$UUID/servers
Before getting started, source your credentials
OS_AUTH_URL=http://$KEYSTONE_IP:5000/v2.0
OS_PASSWORD=password
OS_TENANT_NAME=demo
OS_USERNAME=demo
#!/usr/bin/env python
import os
from novaclient.v1_1 import client
def get_nova_creds():
d = {}
d['username'] = os.environ['OS_USERNAME']
d['api_key'] = os.environ['OS_PASSWORD']
d['auth_url'] = os.environ['OS_AUTH_URL']
d['project_id'] = os.environ['OS_TENANT_NAME']
return d
nova = client.Client(**get_nova_creds())
#Get token (optional, happens on its own if not specified)
nova.authenticate()
To login into the instance with
if not nova.keypairs.findall(name="mykey"):
with open(os.path.expanduser('~/.ssh/id_rsa.pub')) as fpubkey:
nova.keypairs.create(name="mykey", public_key=fpubkey.read())
print nova.keypairs.list()
print nova.flavors.list()
flavor = nova.flavors.find(name="m1.tiny")
print nova.images.list()
flavor = nova.image.find(name="Exact-Image-name")
image = nova.images.find(name="cirros")
flavor = nova.flavors.find(name="m1.tiny")
instance = nova.servers.create(name="test", image=image, flavor=flavor, key_name="mykey")
# Poll at 5 second intervals, until the status is no longer 'BUILD'
status = instance.status
while status == 'BUILD':
time.sleep(5)
# Retrieve the instance again so the status field updates
instance = nova.servers.get(instance.id)
status = instance.status
print "status: %s" % status
print "address: %s" % instance.addresses
instance.delete()
Slides can be found at jogo.github.io
Powered by reveal.js