Module - tripleo_baremetal_populate_environment

This module provides for the following ansible plugin:

  • tripleo_baremetal_populate_environment

Module Documentation

Takes a list of existing instances and a heat environment file and appends to that environment with instance-specific parameters such as the port map.

Options

instances

List of instance uuids to use for building the environment.

environment

Existing heat environment data to add to

ctlplane_network

Name of control plane network

templates

The path to tripleo-heat-templates root directory

Authors

Steve Baker (@stevebaker)

Example Tasks

- name: Expand roles
  tripleo_baremetal_expand_roles:
    baremetal_deployment:
    - name: Controller
      count: 3
      defaults:
        image:
          href: overcloud-full
        networks: []
    - name: Compute
      count: 3
      defaults:
        image:
          href: overcloud-full
        networks: []
    state: present
    stack_name: overcloud
  register: tripleo_baremetal_instances