A bunch of READMEs added

This commit is contained in:
Dmitry Teselkin 2013-04-16 14:40:54 +04:00
parent 0f5debdcb1
commit 9ec65b361f
7 changed files with 110 additions and 0 deletions

24
ExecutionPlan/README.rst Normal file
View File

@ -0,0 +1,24 @@
Execution Plan
==============
Execution Plan is a sequence of actions that should be run on an instance in order to configure it.
Execution Plan contains at least one step, and may reboot the instance.
An Exectution Plan definition file may contain following sections:
* PowerShell functions that are passed to the instance as part of Execution Plan
* At least one execution step
* Conditional reboot statement
In order to simplify the process of Execution Plan creation, a simple SDL was introduced.
SDL's statements:
* include <file with PowerShell functions>
* call <PowerShell function name> [<argument name>=<argument value> [...]]
* reboot <condition>
* out <output file name>
SEE ALSO
========
* `Glazier <http://glazier.mirantis.com>`__

11
README.rst Normal file
View File

@ -0,0 +1,11 @@
Glazier Deployment
==================
This folder holds miscellaneous tools and scripts to deploy Glazier and it's components.
A separate README.rst inside each folder holds more detailed information.
SEE ALSO
========
* `Glazier <http://glazier.mirantis.com>`__

11
Unattended/README.rst Normal file
View File

@ -0,0 +1,11 @@
Unattended Installation Files
=============================
Windows unattended installation files for GUI and Core modes.
These files should be passed to Sysprep.exe.
SEE ALSO
========
* `Glazier <http://glazier.mirantis.com>`__

28
WindowsAgent/README.rst Normal file
View File

@ -0,0 +1,28 @@
Glazier Windows Agent README
============================
Glazier Windows Agent is a component that does all the work on a target node.
Currently only Windows nodes are supported.
Agent embeddes PowerShell engine which is the only execution engine.
Interaction with Conductor
--------------------------
Interaction with Conductor (receiving execution plans and submitting results) is performed via RabbitMQ server.
Agent receives execution plan, caches it and executes. Reboots during execution are allowed.
When execution completes, all output from PowerShell engine is passed back via the RabbitMQ server to the Conductor.
Agent Configuration
-------------------
All necessary configuration is performed during instance creation process. No manual actions needed.
SEE ALSO
--------
* `Glazier <http://glazier.mirantis.com>`__

View File

@ -0,0 +1,11 @@
Windows PowerShell
==================
This folder contains PowerShell modules and scripts that will be executed on an instance by Windows Agent.
Windows PowerShell module is a convenient way to redictribute a set of PowerShell scripts.
SEE ALSO
========
* `Glazier <http://glazier.mirantis.com>`__

11
cloudbase-init/README.rst Normal file
View File

@ -0,0 +1,11 @@
CloudBase-Init
==============
A few modifications were made to the original CloudBase-Init deployment tools.
They are stored under this folder.
SEE ALSO
========
* `Glazier <http://glazier.mirantis.com>`__
* `CloudBase-Init <http://www.cloudbase.it/cloud-init-for-windows-instances/>`__

View File

@ -0,0 +1,14 @@
DevStack Scripts
================
A bunch of scripts that helps to deploy DevStack in a lab environment.
Single Node and Multi Node deployment modes are supported.
However, these scripts require careful configuration before being applied to the system.
SEE ALSO
========
* `Glazier <http://glazier.mirantis.com>`__
* `DevStack <http://devstack.org>`__