<div dir="ltr">One trick that can be done to simplify agent development is to<div><br></div><div>a) configure it to listen to some specific queue and run it locally or on VM (you can even run it from IDE under debugger) so that you can edit its code in place</div><div>b) using code from agent.py write sample application that will send execution plan to you agent</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><span style="border-collapse:separate;color:rgb(0,0,0);font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-size:medium"><span style="font-family:arial;font-size:small">Sincerely yours,<br>Stan Lagun<br>Principal Software Engineer @ Mirantis</span></span><br><span style="border-collapse:separate;color:rgb(0,0,0);font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-size:medium"><span style="font-family:arial;font-size:small"><br><a href="mailto:slagun@mirantis.com" target="_blank"></a></span></span></div></div></div>
<br><div class="gmail_quote">On Tue, Mar 24, 2015 at 1:03 PM, Serg Melikyan <span dir="ltr"><<a href="mailto:smelikyan@mirantis.com" target="_blank">smelikyan@mirantis.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Filip,<br>
<br>
Sure, murano-agent is just a python application, you can easily run<br>
this application locally (even in IDE like Pycharm with attached<br>
debugger). To send execution plan to the agent you need to publish<br>
execution plan to specified queue, results also will be published to<br>
the queue.<br>
<br>
murano-agent require configuration file for executing, you can build<br>
sample configuration file using following instruction: tox -e<br>
genconfig<br>
<br>
Please, take a look at example murano-agent configuration file that<br>
can be used to run it locally:<br>
<br>
[DEFAULT]<br>
# set location where obtained execution plans will be stored<br>
storage = /tmp/murano/plans<br>
debug = true<br>
verbose = true<br>
<br>
# credentials for rabbitmq<br>
[rabbitmq]<br>
host = localhost<br>
port = 5672<br>
login = guest<br>
password = guest<br>
virtual_host = /<br>
<br>
# with this routing key execution plans results will be published<br>
result_routing_key = <None><br>
# to this exchange execution plans results will be published<br>
result_exchange = <None><br>
# from this queue agent will take exection plans<br>
input_queue = <None><br>
<div class="HOEnZb"><div class="h5"><br>
On Tue, Mar 24, 2015 at 11:59 AM, Filip Blaha <<a href="mailto:filip.blaha@hp.com">filip.blaha@hp.com</a>> wrote:<br>
> Hello<br>
><br>
> I would like to test and debug some new features of murano agent like chef<br>
> recipes.<br>
><br>
> I would like to know how to develop murano agent? How to test and debug new<br>
> changes in agent code? Creating new image with every change and and test<br>
> deployment on devstack is time-consuming and not very comfortable. Is there<br>
> any shortcut for this development cycle?<br>
><br>
> Thanks<br>
> Filip<br>
><br>
> __________________________________________________________________________<br>
> OpenStack Development Mailing List (not for usage questions)<br>
> Unsubscribe: <a href="http://OpenStack-dev-request@lists.openstack.org?subject:unsubscribe" target="_blank">OpenStack-dev-request@lists.openstack.org?subject:unsubscribe</a><br>
> <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev</a><br>
<br>
<br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
Serg Melikyan, Senior Software Engineer at Mirantis, Inc.<br>
<a href="http://mirantis.com" target="_blank">http://mirantis.com</a> | <a href="mailto:smelikyan@mirantis.com">smelikyan@mirantis.com</a><br>
</font></span><div class="HOEnZb"><div class="h5"><br>
__________________________________________________________________________<br>
OpenStack Development Mailing List (not for usage questions)<br>
Unsubscribe: <a href="http://OpenStack-dev-request@lists.openstack.org?subject:unsubscribe" target="_blank">OpenStack-dev-request@lists.openstack.org?subject:unsubscribe</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev</a><br>
</div></div></blockquote></div><br></div>