This patch is enabling the doc8 style checker for the *.rst files in
Ironic.
Since this patch is just the first stab at enabling this new check two
errors are currently being ignored by doc8 because of the number of
occurrences in our docs:
* D000 - Duplicated target names. We do have many links with generic
names scattered around the docs (e.g "see", "link")
* D001 - Line's too long
These errors will be fixed in a following patch.
Change-Id: I32fb5a3104b9773c55a80a84dd81e49c567c76ac
2.9 KiB
AMT drivers
Overview
AMT (Active Management Technology) drivers extend Ironic's range to the desktop. AMT/vPro is widely used in desktops to remotely control their power, similar to IPMI in servers.
AMT drivers use WS-MAN protocol to interact with AMT clients. They work on AMT 7.0/8.0/9.0. AMT 7.0 was released in 2010, so AMT drivers should work on most PCs with vPro.
There are two AMT drivers:
pxe_amtuses AMT for power management and deploys the user image over iSCSI from the conductoragent_amtuses AMT for power management and deploys the user image directly to the node via HTTP.
Set up your environment
A detailed reference is available here, and a short guide follows below:
Set up AMT Client
- Choose a system which supports Intel AMT / vPro. Desktop and laptop
systems that support this can often be identified by looking at the
"Intel" tag for the word
vPro. - During boot, press Ctrl+P to enter Intel MEBx management.
- Reset password -- default is
admin. The new password must contain at least one upper case letter, one lower case letter, one digit and one special character, and be at least eight characters. - Go to Intel AMT Configuration:
- Enable all features under SOL/IDER/KVM section
- Select User Consent and choose None (No password is needed)
- Select Network Setup section and set IP
- Activate Network Access
- MEBx Exit
- Restart and enable PXE boot in bios
- Choose a system which supports Intel AMT / vPro. Desktop and laptop
systems that support this can often be identified by looking at the
"Intel" tag for the word
Install
openwsmanon servers whereironic-conductoris running:- Fedora/RHEL:
openwsman-python. - Ubuntu:
python-openwsman's most recent version is 2.4.3 which is enough. - Or build it yourself from: https://github.com/Openwsman/openwsman
- Fedora/RHEL:
Enable the
pxe_amtoragent_amtdriver by adding it to the configuration optionenabled_drivers(typically located at/etc/ironic/ironic.conf) and restart theironic-conductorprocess:service ironic-conductor restartEnroll an AMT node
- Specify these driver_info properties for the node:
amt_password, -
amt_address, andamt_username
- Specify these driver_info properties for the node:
Boot an instance
Note
It is recommended that nodes using the pxe_amt driver be deployed with the local boot option. This is because the AMT firmware currently has no support for setting a persistent boot device. Nodes deployed without the local boot option could fail to boot if they are restarted outside of Ironic's control (I.E. rebooted by a local user) because the node will not attempt to PXE / network boot the kernel, using local boot solves this known issue.