diff --git a/xCAT-UI/help.php b/xCAT-UI/help.php new file mode 100644 index 000000000..d9d5b552c --- /dev/null +++ b/xCAT-UI/help.php @@ -0,0 +1,17 @@ + \ No newline at end of file diff --git a/xCAT-UI/js/help/help.js b/xCAT-UI/js/help/help.js new file mode 100644 index 000000000..c47963ccb --- /dev/null +++ b/xCAT-UI/js/help/help.js @@ -0,0 +1,27 @@ +function loadHelpPage(){ + //create help tab + var tab = new Tab(); + tab.init(); + $('#content').append(tab.object()); + + //add the help content + var helpForm = $('
'); + helpForm.append( + '
' + + 'Quick Start' + + '
    ' + + '
  1. 1. Discover hardware
    Discover all hardware in the cluster. Define them in the xCAT database. Initialize your cluster.
  2. ' + + '
  3. 2. Verify defined nodes
    View nodes definition by groups in a table or graphical style.
  4. ' + + '
  5. 3. Install compute nodes
    Copy useful files from DVD into harddisk. Create Linux image. Install compute nodes in stateful, stateless and statelite style.
  6. ' + + '
  7. 4. Monitor Cluster
    Monitor your xCAT cluster using one or more third party monitoring software such as Ganglia, RMC, etc.
  8. ' + + '
' + + '
' + + '
' + + 'Advanced' + + '
    ' + + '
  1. a. Edit the xCAT database tables
  2. ' + + '
  3. b. Update the xCAT RPM on the Management Node
  4. ' + + '
' + + '
'); + tab.add('helpTab', 'Help', helpForm, false); +} \ No newline at end of file