murano-deployment/contrib/windows/ExecutionPlan
Cao Xuan Hoang 328f659776 Add Apache 2.0 license to source file
As per OpenStack licensing guide lines [1]:
[H102 H103] Newly contributed Source Code should be licensed under
the Apache 2.0 license.
[H104] Files with no code shouldn't contain any license header nor
comments, and must be left completely empty.

[1] http://docs.openstack.org/developer/hacking/#openstack-licensing

Change-Id: Ide3b2d067eaa39073c3a7b17537645d4b6f243d6
2016-11-15 15:42:19 +07:00
..
1.CreatePrimaryDC Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
2.JoinDomain Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
3.CreateSecondaryDC Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
4.JoinAndPromote Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
DeployWebApp Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
FailoverCluster Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
GetDnsIpAddressesOnDc Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
InstallIIS Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
InstallSQL Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
SqlServerAlwaysOnAvailabilityGroup Fix murano-deployment gate 2016-07-11 10:56:15 +03:00
ExecutionPlanGenerator.exe Cleaned up unused files 2014-07-01 16:06:33 +04:00
ExecutionPlanGenerator.py Add Apache 2.0 license to source file 2016-11-15 15:42:19 +07:00
Newtonsoft.Json.dll Cleaned up unused files 2014-07-01 16:06:33 +04:00
README.rst Cleaned up unused files 2014-07-01 16:06:33 +04:00

README.rst

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