This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
copper:academy:apex [2016/02/12 01:12] Bryan Sullivan |
copper:academy:apex [2016/02/12 17:33] (current) Bryan Sullivan |
||
---|---|---|---|
Line 63: | Line 63: | ||
</code> | </code> | ||
- | ==== Install RDO and Apex RPMs ==== | + | ==== Creating a Node Inventory File ==== |
This section explains further the instructions at [[http://artifacts.opnfv.org/apex/docs/installation-instructions/baremetal.html#creating-a-node-inventory-file|Creating a Node Inventory File]]. | This section explains further the instructions at [[http://artifacts.opnfv.org/apex/docs/installation-instructions/baremetal.html#creating-a-node-inventory-file|Creating a Node Inventory File]]. | ||
- | * Based upon the examples in Apex repo folder config/inventory, create the inventory file /etc/apex-opnfv/inventory.yaml | + | * Based upon the examples in Apex repo folder ~/git/apex/config/inventory, create the inventory file ~/inventory.yaml |
<code> | <code> | ||
- | sudo vi /etc/apex-opnfv/inventory.yaml | + | vi ~/inventory.yaml |
nodes: | nodes: | ||
node1: | node1: | ||
Line 79: | Line 79: | ||
capabilities: "profile:control" | capabilities: "profile:control" | ||
node2: | node2: | ||
- | mac_address: "10:23:45:67:89:AC" | + | mac_address: "<compute mac>" |
cpus: 2 | cpus: 2 | ||
memory: 16384 | memory: 16384 | ||
Line 85: | Line 85: | ||
arch: "x86_64" | arch: "x86_64" | ||
capabilities: "profile:compute" | capabilities: "profile:compute" | ||
+ | </code> | ||
+ | |||
+ | ==== Creating the Settings Files ==== | ||
+ | |||
+ | This section explains further the instructions at [[http://artifacts.opnfv.org/apex/docs/installation-instructions/baremetal.html#creating-the-settings-files|Creating the Settings Files]]. | ||
+ | |||
+ | * Based upon the examples in Apex repo folder ~/git/apex/config/deploy, create the deploy settings file ~/deploy_settings.yaml | ||
+ | * Note: the below assumes the IPMI settings should be deleted, but it's not clear yet how to enable wake-on-lan instead | ||
+ | <code> | ||
+ | vi ~/deploy_settings.yaml | ||
+ | global_params: | ||
+ | ha_enabled: false | ||
+ | |||
+ | deploy_options: | ||
+ | sdn_controller: opendaylight | ||
+ | sdn_l3: false | ||
+ | tacker: false | ||
+ | congress: false | ||
+ | sfc: false | ||
+ | </code> | ||
+ | |||
+ | * Enable wake-on-lan | ||
+ | <code> | ||
+ | cp /usr/bin/opnfv-deploy ~/opnfv-deploy | ||
+ | vi ~/opnfv-deploy | ||
+ | (change line as below and save) | ||
+ | \"pm_type\": \"pxe_wol\", | ||
+ | sudo cp ~/opnfv-deploy /usr/bin/opnfv-deploy | ||
</code> | </code> |