Heat auto-discovery, keero-linux-keys -> keero-keys

This commit is contained in:
Stan Lagun 2013-03-28 01:11:06 +04:00
parent 600e161f6c
commit f33bd681ab
7 changed files with 357 additions and 352 deletions

View File

@ -22,6 +22,7 @@ log = logging.getLogger(__name__)
def task_received(task, message_id):
with rabbitmq.RmqClient() as rmqclient:
try:
log.info('Starting processing task {0}: {1}'.format(
message_id, anyjson.dumps(task)))
reporter = reporting.Reporter(rmqclient, message_id, task['id'])
@ -51,7 +52,7 @@ def task_received(task, message_id):
break
command_dispatcher.close()
finally:
del task['token']
result_msg = rabbitmq.Message()
result_msg.body = task

View File

@ -1,6 +1,7 @@
import anyjson
import eventlet
import jsonpath
from conductor.openstack.common import log as logging
import conductor.helpers
from command import CommandBase
@ -20,12 +21,17 @@ class HeatExecutor(CommandBase):
self._stack = 'e' + stack
settings = conductor.config.CONF.heat
client = ksclient.Client(endpoint=settings.keystone)
scoped_token = client.tokens.authenticate(
client = ksclient.Client(endpoint=settings.auth_url)
auth_data = client.tokens.authenticate(
tenant_id=tenant_id,
token=token).id
token=token)
self._heat_client = Client('1', settings.url,
scoped_token = auth_data.id
heat_url = jsonpath.jsonpath(auth_data.serviceCatalog,
"$[?(@.name == 'heat')].endpoints[0].publicURL")[0]
self._heat_client = Client('1', heat_url,
token_only=True, token=scoped_token)
def execute(self, command, callback, **kwargs):

View File

@ -46,8 +46,7 @@ rabbit_opts = [
]
heat_opts = [
cfg.StrOpt('url'),
cfg.StrOpt('keystone')
cfg.StrOpt('auth_url'),
]
CONF = cfg.CONF

View File

@ -12,8 +12,8 @@ def send_command(engine, context, body, template, service, host, mappings=None,
def callback(result_value):
log.info(
'Received result from {3} for {0}: {1}. Body is {2}'.format(
template, result_value, body, host))
'Received result from {2} for {0}: {1}'.format(
template, result_value, host))
if result is not None:
context[result] = result_value['Result']

View File

@ -25,7 +25,7 @@
</parameter>
<parameter name="arguments">
<map>
<argument name="KeyName">keero-linux-keys</argument>
<argument name="KeyName">keero-keys</argument>
<argument name="InstanceType">m1.medium</argument>
<argument name="ImageName">ws-2012-full</argument>
</map>

View File

@ -25,7 +25,7 @@
</parameter>
<parameter name="arguments">
<map>
<argument name="KeyName">keero-linux-keys</argument>
<argument name="KeyName">keero-keys</argument>
<argument name="InstanceType">m1.medium</argument>
<argument name="ImageName">ws-2012-full</argument>
</map>

View File

@ -4,8 +4,7 @@ debug=True
verbose=True
[heat]
url = http://172.18.124.101:8004/v1/16eb78cbb688459c8308d89678bcef50
keystone = http://172.18.124.101:5000/v2.0
auth_url = http://172.18.124.101:5000/v2.0
[rabbitmq]
host = 172.18.124.101