The environment affects the runtime behavior of a template. It provides a way to override the resource implementations and a mechanism to place parameters that the service needs.
To fully understand the runtime behavior you have to consider what plug-ins are installed on the cloud you’re using.
The environment is a yaml text file that contains two main sections:
Use the -e option of the heat stack-create command to create a stack using the environment defined in such a file.
You can also provide environment parameters as a list of key/value pairs using the -P option of the heat stack-create command.
In the following example the environment is read from the my_env.yaml file and an extra parameter is provided using the -P option:
$ heat stack-create my_stack -e my_env.yaml -P "param1=val1;param2=val2" -f my_tmpl.yaml
The environment used for a stack is the combination of the environment you use with the template for the stack, and a global environment that is determined by your cloud operator. An entry in the user environment takes precedence over the global environment. OpenStack includes a default global environment, but your cloud operator can add additional environment entries.
The cloud operator can add to the global environment by putting environment files in a configurable directory wherever the Orchestration engine runs. The configuration variable is named environment_dir and is found in the [DEFAULT] section of /etc/heat/heat.conf. The default for that directory is /etc/heat/environment.d. Its contents are combined in whatever order the shell delivers them when the service starts up, which is the time when these files are read. If the my_env.yaml file from the example above had been put in the environment_dir then the user’s command line could be this:
heat stack-create my_stack -P "some_parm=bla" -f my_tmpl.yaml
You can define values for the template arguments in the parameters section of an environment file:
parameters:
KeyName: heat_key
InstanceType: m1.micro
ImageId: F18-x86_64-cfntools
You can define default values for all template arguments in the parameter_defaults section of an environment file. These defaults are passed into all template resources:
parameter_defaults:
KeyName: heat_key
You can map one resource to another in the resource_registry section of an environment file. The resource you provide in this manner must have an identifier, and must reference either another resource’s ID or the URL of an existing template file.
The following example maps a new OS::Networking::FloatingIP resource to an existing OS::Nova::FloatingIP resource:
resource_registry:
"OS::Networking::FloatingIP": "OS::Nova::FloatingIP"
You can use wildcards to map multiple resources, for example to map all OS::Neutron resources to OS::Network:
resource_registry:
"OS::Network*": "OS::Neutron*"
To create or override a resource with a custom resource, create a template file to define this resource, and provide the URL to the template file in the environment file:
resource_registry:
"AWS::EC2::Instance": file:///path/to/my_instance.yaml
The supported URL schemes are file, http and https.
Note
The template file extension must be .yaml or .template, or it will not be treated as a custom template resource.
You can limit the usage of a custom resource to a specific resource of the template:
resource_registry:
resources:
my_db_server:
"OS::DBInstance": file:///home/mine/all_my_cool_templates/db.yaml
If you want to debug your stack as it’s being created or updated, or if you want to run it in phases, you can set pre-create and pre-update hooks in the resources section of resource_registry.
To set a hook, add either hooks: pre-create or hooks: pre-update to the resource’s dictionary. You can also use [pre-create, pre-update] to stop on both actions.
You can combine hooks with other resources properties such as provider templates or type mapping:
resource_registry:
resources:
my_server:
"OS::DBInstance": file:///home/mine/all_my_cool_templates/db.yaml
hooks: pre-create
nested_stack:
nested_resource:
hooks: pre-update
another_resource:
hooks: [pre-create, pre-update]
When heat encounters a resource that has a hook, it pauses the resource action until the hook clears. Any resources that depend on the paused action wait as well. Non-dependent resources are created in parallel unless they have their own hooks.
It is possible to perform a wild card match using an asterisk (*) in the resource name. For example, the following entry pauses while creating app_server and database_server, but not server or app_network:
resource_registry:
resources:
"*_server":
hooks: pre-create
Clear hooks by signaling the resource with {unset_hook: pre-create} or {unset_hook: pre-update}.