<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Nov 8, 2017 at 7:04 AM, James LaBarre <span dir="ltr"><<a href="mailto:jlabarre@redhat.com" target="_blank">jlabarre@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I'm wondering if it's possible to add a baremetal compute node to a<br>
tripleo-quickstart setup after the system is installed (or, perhaps a<br>
way to add the baremetal to a playbook).  I expect one of the big<br>
problems will be getting the controller & undercloud to communicate<br>
outside it's virtual network.<br>
<br>
I had also considered doing a completely manual install, making<br>
virtualBMC VM nodes for undercloud & controller, although the network<br>
communication still ends up being an issue.<br>
<br>
______________________________<wbr>_________________<br>
users mailing list<br>
<a href="mailto:users@lists.rdoproject.org">users@lists.rdoproject.org</a><br>
<a href="http://lists.rdoproject.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.rdoproject.org/<wbr>mailman/listinfo/users</a><br>
<br>
To unsubscribe: <a href="mailto:users-unsubscribe@lists.rdoproject.org">users-unsubscribe@lists.<wbr>rdoproject.org</a><br>
</blockquote></div><br></div><div class="gmail_extra">After quickstart has run, you can certainly add Ironic nodes exactly as you would in any deployment. You would create a JSON file with the node attributes, like so:</div><div class="gmail_extra"><br></div><div class="gmail_extra">{<br>  "nodes": [<br>    {<br>      "pm_password": "password",<br>      "pm_type": "pxe_ipmitool",<br>      "cpu":"2",<br>      "memory":"4096",<br>      "disk":"40",<br>      "arch":"x86_64",<br>      "mac": [<br>        "a0:2b:b8:1f:be:40"<br>      ],<br>      "pm_user": "root",<br>      "pm_addr": "10.34.74.221"<br>    },<br>    {<br>      "pm_password": "password",<br>      "pm_type": "pxe_ipmitool",<br>      "cpu":"2",<br>      "memory":"4096",<br>      "disk":"40",<br>      "arch":"x86_64",<br>      "mac": [<br>        "a0:2b:b8:1f:c0:fc"<br>      ],<br>      "pm_user": "root",<br>      "pm_addr": "10.34.74.222"</div><div class="gmail_extra">     }</div><div class="gmail_extra">   ]</div><div class="gmail_extra">}<br></div><div class="gmail_extra"><br></div><div class="gmail_extra">Then import the file with "openstack baremetal import <filename>", and you can then run introspection to detect the node details.<br></div><div class="gmail_extra"><br>-- <br><div class="gmail_signature"><div dir="ltr">Dan Sneddon         |  Senior Principal OpenStack Engineer<br><a href="mailto:dsneddon@redhat.com" target="_blank">dsneddon@redhat.com</a> |  <a href="http://redhat.com/openstack" target="_blank">redhat.com/openstack</a><br>dsneddon:irc        |  @dxs:twitter<br></div></div>
</div></div>