I add documentation for the administration functionalities.
diff --git a/_projectCommon.php b/_projectCommon.php
index 230fe4b..a245944 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -22,5 +22,6 @@
   $Nav->addCustomNav("Setup - Microsoft Azure", "/jemo/setup_azure.php", "_self", NULL);
   $Nav->addCustomNav("Setup - Google Cloud", "/jemo/setup_gcp.php", "_self", NULL);
   $Nav->addCustomNav("Arcitecture", "/jemo/docs.php", "_self", NULL);
+  $Nav->addCustomNav("Administration", "/jemo/admin.php", "_self", NULL);
   $Nav->addCustomNav("Source code", "https://github.com/eclipse/jemo", "_blank", NULL);
 //  $Nav->addCustomNav("Using Phoenix", "http://wiki.eclipse.org/Using_Phoenix", "_self", NULL);
diff --git a/admin.php b/admin.php
new file mode 100644
index 0000000..a1d7a8e
--- /dev/null
+++ b/admin.php
@@ -0,0 +1 @@
+<? include("index.php"); ?>
\ No newline at end of file
diff --git a/content/en_admin.php b/content/en_admin.php
new file mode 100644
index 0000000..bd8e083
--- /dev/null
+++ b/content/en_admin.php
@@ -0,0 +1,110 @@
+<?php
+/*******************************************************************************
+ * Copyright (c) 2014 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *******************************************************************************/
+?>
+
+<!-- Main content area -->
+<div id="midcolumn">
+
+    <h1 id="jemo-admin"><a class="anchor" href="#jemo-admin"></a>1. Jemo Administration</h1>
+    <p>Jemo offers a set of functionalities only to users with admin permissions at http://localhost/jemo/admin
+      (change 'localhost' if don't run jemo locally.) The user is prompted to provide credentials and if authorised
+      it is provided two options, the <code>Admin Panel</code> or the <code>CI/CD</code> option.
+    </p>
+
+    <h2>Admin Panel</h2>
+    <p>
+    The admin panel displays the full list of plugins that are currently installed on the Jemo cluster.
+    Notice that you can install more than one versions of the same plugin at the same time. The jemo cluster will run both of them.
+    This panel gives the administrator full visibility and control on what plugin versions run at any time.
+    </p>
+
+    <p>
+    For each plugin version, the id, the name and the version are displayed in a row and if you expand the arrow at the right side
+    the list of modules comprising the plugin is displayed. Two buttons are provided for each plugin,
+    one that switches between <code>DEACTIVATE/ACTIVATE</code> when the plugin is active/inactive respectively and
+    another labeled with <code>DELETE</code> that deletes the plugin.
+    Deactivating a plugin means that the plugin stops running on the Jemo cluster, but its files, i.e. the jar,
+    remains stored on the cloud provider storage for future use in case this plugin version is re-activated.
+    On the other hand, deleting a plugin version deletes all the relevant files from the cloud provider storage.
+    </p>
+
+    <h2>CI/CD</h2>
+    The CI/CD functionality offers the ability to the Jemo administrator to deploy Jemo plugins whose
+    code is hosted on a <a href="https://github.com/" target="_blank">Github</a> repository.
+    To use this functionality, make sure you have <a href="https://git-scm.com/" target="_blank">git</a> and
+    <a href="https://maven.apache.org/" target="_blank>"mvn</a> installed and available on your Path. Run:
+    <pre> > git --version
+ > mvn --version
+    </pre>
+
+    <p>You will be redirected to a form asking you to provide the following parameters.</p>
+
+    <table class="tableblock frame-all grid-all stretch">
+        <caption class="title">Table 1. CI/CD patterns</caption>
+        <colgroup>
+            <col style="width: 25%;">
+            <col style="width: 10%;">
+            <col style="width: 65%;">
+        </colgroup>
+        <thead>
+        <tr>
+            <th class="tableblock halign-left valign-top">Parameter</th>
+            <th class="tableblock halign-left valign-top">Required/Optional</th>
+            <th class="tableblock halign-left valign-top">Example</th>
+            <th class="tableblock halign-left valign-top">Description</th>
+        </tr>
+        </thead>
+        <tbody>
+        <tr>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">repoUrl</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>M</code></p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">https://github.com/ytheohar/jemo.git</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">The https url to clone from</p></td>
+        </tr>
+        <tr>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">branch</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>O</code> - the default is "master"</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">monitor-plugins-improvements</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">the branch of the repository</p></td>
+        </tr>
+        <tr>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">subDir</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>O</code> - the default is "", i.e. the root folder</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">demos/jemo-trader-app</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">The sub directory with the repository where the code is located</p></td>
+        </tr>
+        <tr>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">pluginId</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>M</code></p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">1</p></td>
+            <td class="tableblock halign-left valign-top"><p class="tableblock">The plugin id</p></td>
+        </tr>
+        </tbody>
+    </table>
+
+    <p>When your click the SUBMIT button, Jemo starts a process where it runs the following commands:
+      <pre> > git clone --single-branch --branch monitor-plugins-improvements <repoUrl> cicd/1
+ > mvn deploy -f cicd/1/demos/jemo-trader-app/pom.xml -Djemo.username=<JEMO_ADMIN_USER_NAME> -Djemo.password=<JEMO_ADMIN_PASSWORD> -Djemo.id=1 -Djemo.endpoint=http://localhost
+      </pre>
+      The output of these commands is displayed on your screen, along with a message at the top notifying you
+      about the status of the deployment (success or failure).
+      You can browse back on your browser and select the <code>Admin Panel</code> option
+      to verify the plugin version was deployed and runs on the Jemo cluster. Notice that the plugin version
+      is determined by the artifact version defined in the pom file of the plugin repository.
+    </p>
+
+
+</div>
+<!-- ./end  #midcolumn -->
+
+<!-- Start of the right column -->
+<!-- ./end  #rightcolumn -->