Merge "Update docs around output variables"

This commit is contained in:
Zuul 2020-01-17 00:54:07 +00:00 committed by Gerrit Code Review
commit a67c95312d
12 changed files with 32 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Role Variables
Output Variables
----------------
* `tripleo_container_image_delete_result`: Ansible execution results
* `tripleo_container_image_delete_result`: Ansible shell execution results
Dependencies
------------

View File

@ -28,7 +28,7 @@ Role Variables
Output Variables
----------------
* `tripleo_container_image_push_result`: Ansible execution results
* `tripleo_container_image_push_result`: Ansible shell execution results
Dependencies
------------

View File

@ -21,6 +21,11 @@ Role Variables
* `tripleo_undercloud_backup_timeout`: (Number) Timeout for the backup command. Default: 7200
* `tripleo_undercloud_backup_log`: (String) Backup log file path. Default: "{{ tripleo_undercloud_backup_home_dir }}/undercloud_backup.log"
Output Variables
----------------
* `tripleo_undercloud_backup_result`: Ansible shell execution results
Dependencies
------------

View File

@ -24,4 +24,5 @@
warn: false
async: "{{ tripleo_undercloud_backup_timeout }}"
poll: 10
register: tripleo_undercloud_backup_result
changed_when: true

View File

@ -24,6 +24,11 @@ Role Variables
* `tripleo_undercloud_install_yes`: (Boolean) Flag to add --yes to the install. Default: false
* `tripleo_undercloud_install_log`: (String) Install log file path. Default: "{{ tripleo_undercloud_install_home_dir }}/undercloud_install.log"
Output Variables
----------------
* `tripleo_undercloud_install_result`: Ansible shell execution results
Dependencies
------------

View File

@ -27,4 +27,5 @@
warn: false
async: "{{ tripleo_undercloud_install_timeout }}"
poll: 10
register: tripleo_undercloud_install_result
changed_when: true

View File

@ -23,6 +23,11 @@ Role Variables
* `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
------------

View File

@ -25,4 +25,5 @@
chdir: "{{ tripleo_undercloud_minion_install_home_dir }}"
async: "{{ tripleo_undercloud_minion_install_timeout }}"
poll: 10
register: tripleo_undercloud_minion_install_result
changed_when: true

View File

@ -24,6 +24,11 @@ Role Variables
* `tripleo_undercloud_minion_upgrade_yes`: (Boolean) Flag to add --yes to the upgrade. Default: false
* `tripleo_undercloud_minion_upgrade_log`: (String) Upgrade log file path. Default: "{{ tripleo_undercloud_minion_upgrade_home_dir }}/undercloud_minion_upgrade.log"
Output Variables
----------------
* `tripleo_undercloud_minion_upgrade_result`: Ansible shell execution results
Dependencies
------------

View File

@ -25,4 +25,5 @@
chdir: "{{ tripleo_undercloud_minion_upgrade_home_dir }}"
async: "{{ tripleo_undercloud_minion_upgrade_timeout }}"
poll: 10
register: tripleo_undercloud_minion_upgrade_result
changed_when: true

View File

@ -24,6 +24,11 @@ Role Variables
* `tripleo_undercloud_upgrade_yes`: (Boolean) Flag to add --yes to the upgrade. Default: false
* `tripleo_undercloud_upgrade_log`: (String) Upgrade log file path. Default: "{{ tripleo_undercloud_upgrade_home_dir }}/undercloud_upgrade.log"
Output Variables
----------------
* `tripleo_undercloud_upgrade_result`: Ansible shell execution results
Dependencies
------------

View File

@ -27,4 +27,5 @@
warn: false
async: "{{ tripleo_undercloud_upgrade_timeout }}"
poll: 10
register: tripleo_undercloud_upgrade_result
changed_when: true