/** * Load the help page */ function loadHelpPage(){ // Create help tab var tab = new Tab(); tab.init(); $('#content').append(tab.object()); var helpForm = $('
'); helpForm.append( '
' + 'Quick Start' + '
' + '
    ' + '
  1. 1. Discover hardware
    Discover all hardware in the cluster. Define them in the xCAT database.
  2. ' + '
  3. 2. View defined nodes
    View node definitions by groups in a table or graphical view.
  4. ' + '
  5. 3. Manage operating system images
    View operating system images defined in xCAT. Copy operating system ISOs into xCAT. Create stateful, stateless, or statelite images.
  6. ' + '
  7. 4. Provision nodes
    Create stateful, stateless, or statelite virtual machines. Install an operating system onto bare metal machines.
  8. ' + '
  9. 5. Manage and provision storage and networks
    Create network devices. Define storage for systems.
  10. ' + '
  11. 6. Monitor cluster
    Monitor the xCAT cluster using one or more third party software such as Ganglia, RMC, etc.
  12. ' + '
' + '
' + '
' + 'Settings' + '
' + '
    ' + '
  1. a. Manage and control user access
  2. ' + '
  3. b. Edit the xCAT database tables
  4. ' + '
  5. c. Update xCAT packages
  6. ' + '
' + '
'); tab.add('helpTab', 'Help', helpForm, false); }