Change-Id: I72a497658cfdaea076e1a40330b113ae35381a5e Partial-Bug: #1603950
6.8 KiB
Execution plan template
An execution plan template is a set of metadata that describes the installation process of an application on a virtual machine. It is a minimal executable unit that can be triggered in Murano workflows and is understandable to the Murano agent, which is responsible for receiving, correctness verification and execution of the statements included in the template.
The execution plan template is able to trigger any type of script that executes commands and installs application components as the result. Each script included in the execution plan template may consist of a single file or a set of interrelated files. A single script can be reused across several execution plans.
This section is devoted to the structure and syntax of an execution
plan template. For different configurations of templates, please refer
to the Examples <examples>
section.
Template sections
The table below contains the list of the sections that can be included in the execution plan template with the description of their meaning and the default attributes which are used by the agent if any of the listed parameters is not specified.
Section name | Meaning and default value |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
FormatVersion property
FormatVersion
is a property that all other depend on.
That is why it is very important to specify it correctly.
FormatVersion 1.0.0 (default) is still used by Windows murano-agent.
Almost all the applications in murano-apps repository work with
FormatVersion 2.0.0. New features that are introduced in Kilo, such as
Chef or Puppet, and downloadable files require version 2.1.0 or greater.
Since FormatVersion 2.2.0 it is possible to enable Berkshelf. It
requires Mitaka version of agent. If you omit the
FormatVersion
property or put something like
<2.0.0
, it will lead to the incorrect behaviour. The
same happens if, for example, FormatVersion=2.1.0
, and a VM
has the pre-Kilo agent.
Scripts section
Scripts are the building blocks of execution plan templates. As the name implies those are the scripts for different deployment platforms.
Each script may consists of one or more files. Those files are script's program modules, resource files, configs, certificates etc.
Scripts may be executed as a whole (like a single piece of code), expose some functions that can be independently called in an execution plan script or both. This depends on deployment platform and executor capabilities.
Scripts are specified using Scripts
attribute of
execution plan. This attribute maps script name to a structure
(document) that describes the script. It has the following
properties:
- Type
-
the name of a deployment platform the script is targeted to. The available alternative options for version>=2.1.0 are
Application
,Chef
,Puppet
, and for version<2.1.0 isApplication
only. String, required. - Version
-
the minimum version of the deployment platform/executor required by the script. String, optional.
- EntryPoint
-
the name of the script file that is an entry point for this execution plan template. String, required.
- Files
-
the filenames of the additional files required for the script. Thus, if the script specified in the
EntryPoint
section imports other scripts, they should be provided in this section.The filenames may include slashes that the agent preserve on VM. If a filename is enclosed in the angle brackets (<...>) it will be base64-encoded. Otherwise, it will be treated as a plain-text that may affect line endings.
In Kilo, entries for this property may be not just strings but also dictionaries (for example,
filename: URL
) to specify downloadable files or git repositories.The default value is
[]
that means that no extra files are used. Array, optional. - Options
-
an optional dictionary of type
String->JsonObject
that contains additional options for the script executor. If not provided, an empty dictionary is assumed.Available alternatives are:
captureStdout
,captureStderr
,verifyExitcode
(raise an exception if result is not positive). As Options are executor-dependent, these three alternatives are available for the Application executor, but may have no sense for other types.captureStdout
,captureStderr
andverifyExitcode
require boolean values, and have True as their default values.Dictionary, optional.
Please make sure the files specified in EntryPoint and Files sections exist.
Files section
Files is an execution plan's entry that describes files that are passed as the part of the execution plan template. This is a dictionary that maps file ID to a document describing the file.
It has the following attributes:
- Name
the filename; may include slashes to specify files located in nested folders. The root directory is the
Resources/scripts
directory.- BodyType
- is one of the following:
Text
: Body attribute contains string content of the file
Base64
: Body attribute contains base64 encoded string content ofthe (binary) file
- Body
contains file data or valid file reference