tripleo-operator-ansible/roles/tripleo_undercloud_minion_i...
Sorin Sbarnea f2467db214 Enabled markdownlint
Change-Id: I34b19ce71f88901d87c602f98ca6f274b61d1f82
2020-01-28 13:27:26 +00:00
..
defaults Rename roles to use underscore 2020-01-21 10:12:00 -07:00
meta Rename roles to use underscore 2020-01-21 10:12:00 -07:00
tasks Rename roles to use underscore 2020-01-21 10:12:00 -07:00
tests Fixed flake8 excludes and new-lines 2020-01-27 19:10:31 +00:00
README.md Enabled markdownlint 2020-01-28 13:27:26 +00:00

README.md

tripleo_undercloud_minion_install

A role to run the install a TripleO undercloud minion.

Requirements

None.

Role Variables

  • tripleo_undercloud_minion_install_debug: (Boolean) Flag used to enable the debug version of commands. Default: false
  • tripleo_undercloud_minion_install_home_dir: (String) Home directory for the undercloud user. Default: "{{ ansible_env.HOME }}"
  • tripleo_undercloud_minion_install_dry_run: (Boolean) Flag to add --dry-run to the install. Default: false
  • tripleo_undercloud_minion_install_force_stack_update: (Boolean) Flag to add --force-stack-update to the install. Default: false
  • tripleo_undercloud_minion_install_no_validations: (Boolean) Flag to add --no-validations to the install. Default: false
  • tripleo_undercloud_minion_install_timeout: (Number) Timeout for the install command. Default: 7200
  • tripleo_undercloud_minion_install_yes: (Boolean) Flag to add --yes to the install. Default: false
  • tripleo_undercloud_minion_install_log_combine: (Boolean) Flag to combine stdout and stderr in the logfile. Default: true
  • tripleo_undercloud_minion_install_log_output: (Boolean) Flag to log the output to a file rather than show it in the ansible output. Default: true
  • tripleo_undercloud_minion_install_log: (String) Install log file path. Default: "{{ tripleo_undercloud_minion_install_home_dir }}/undercloud_minion_install.log"

Output Variables

  • tripleo_undercloud_minion_install_result: Ansible shell execution results

Dependencies

None.

Example Playbook

Example install execution playbook

- hosts: undercloud
  gather_facts: true
  tasks:
    - name: Install undercloud minion
      import_role:
        name: tripleo_undercloud_minion_install
      vars:
        tripleo_undercloud_minion_install_debug: true

License

Apache-2.0