Merge "Add new parameter in order to get a kind of dry-run"

This commit is contained in:
Zuul 2020-05-14 16:12:37 +00:00 committed by Gerrit Code Review
commit 7dd68a353c
131 changed files with 217 additions and 32 deletions

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_config_generate_ansible_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_config_generate_ansible_deployment_user`: (String) Deployment user to use. Default: "{{ ansible_user }}"
* `tripleo_config_generate_ansible_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_config_generate_ansible_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_config_generate_ansible_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_config_generate_ansible_home_dir`: (String) Directory to run the command in. This is the default location for the output if `tripleo_config_generate_ansible_output_dir` is not specified.. Default: "{{ ansible_env.HOME }}"
* `tripleo_config_generate_ansible_os_cloud`: (String) OS_CLOUD value to use when running the command. If tripleo_os_cloud is defined, it will be the default. Otherwise the default is ''. This variable takes precedence over `tripleo_config_generate_ansible_rc_file`.
* `tripleo_config_generate_ansible_output_dir`: (String) Directory to output ansible.cfg and ansible.log files.

View File

@ -7,4 +7,5 @@ tripleo_config_generate_ansible_os_cloud: "{{ tripleo_os_cloud | default('') }}"
tripleo_config_generate_ansible_output_dir:
tripleo_config_generate_ansible_rc_file: "{{ tripleo_rc_file | default(ansible_env.HOME ~ '/overcloudrc') }}"
tripleo_config_generate_ansible_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_config_generate_ansible_generate_scripts_only: "{{ tripleo_scripts_only | default(False) }}"
tripleo_config_generate_ansible_home_dir: "{{ ansible_env.HOME }}"

View File

@ -36,3 +36,6 @@
environment: "{{ _generate_env }}"
register: tripleo_config_generate_ansible_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_config_generate_ansible_generate_scripts_only|bool

View File

@ -16,12 +16,12 @@ Role Variables
* `tripleo_deploy_control_virtual_ip`: (String) Control plain VIP address.
* `tripleo_deploy_debug`: (Boolean) Flag to print out the command that is run. Default: false
* `tripleo_deploy_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_deploy_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_deploy_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_deploy_deployment_python_interpreter`: (String) Path to a python interpreter for the deployment actions.
* `tripleo_deploy_deployment_user`: (String) User who is executing the tripleo deployment via sudo. Defaults: "{{ ansible_env.USER }}"
* `tripleo_deploy_environment_files`: (List) A list of environment file paths for the deployment.
* `tripleo_deploy_force_stack_create`: (Boolean) Flag to force stack create. Default: false
* `tripleo_deploy_force_stack_update`: (Boolean) Flag to force stack update. Default: false
* `tripleo_deploy_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By defaukt uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` isn't defined.
* `tripleo_deploy_heat_api_port`: (Number) Heat API port to use for the installer.
* `tripleo_deploy_heat_user`: (String) User to execute the non-privleged heat-all process.
* `tripleo_deploy_hieradata_override`: (String) Path to hierdata override file.

View File

@ -11,6 +11,7 @@ tripleo_deploy_environment_files: []
tripleo_deploy_force_stack_create: false
tripleo_deploy_force_stack_update: false
tripleo_deploy_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_deploy_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_deploy_heat_api_port:
tripleo_deploy_heat_user:
tripleo_deploy_hieradata_override:

View File

@ -93,7 +93,9 @@
async: "{{ tripleo_deploy_timeout }}"
poll: "{{ tripleo_deploy_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_deploy_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_admin_authorize_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_admin_authorize_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_admin_authorize_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_admin_authorize_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_admin_authorize_home_dir`: (String) Location to execute the command in. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_admin_authorize_os_cloud`: (String) OS_CLOUD value to use when running the command. If tripleo_os_cloud is defined, it will be the default. Otherwise the default is ''. This variable takes precedence over `tripleo_overcloud_admin_authorize_rc_file`.
* `tripleo_overcloud_admin_authorize_output_dir`: (String) Directory to output ansible.cfg and ansible.log files. If not specified, will output to the `tripleo_overcloud_admin_authorize_home_dir`.

View File

@ -3,6 +3,7 @@
openstack_bin: openstack
tripleo_overcloud_admin_authorize_debug: false
tripleo_overcloud_admin_authorize_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_admin_authorize_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_admin_authorize_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_admin_authorize_os_cloud: "{{ tripleo_os_cloud | default('') }}"
tripleo_overcloud_admin_authorize_output_dir:

View File

@ -49,6 +49,9 @@
poll: "{{ tripleo_overcloud_admin_authorize_poll }}"
register: tripleo_overcloud_admin_authorize_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_admin_authorize_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -16,6 +16,7 @@ Role Variables
* `tripleo_overcloud_cell_export_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_cell_export_force_overwrite`: (Boolean) Flag to overwrite the output file. Default: false
* `tripleo_overcloud_cell_export_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_cell_export_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_cell_export_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_cell_export_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_cell_export_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_cell_export_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -6,6 +6,7 @@ tripleo_overcloud_cell_export_control_plane_stack:
tripleo_overcloud_cell_export_debug: false
tripleo_overcloud_cell_export_force_overwrite: false
tripleo_overcloud_cell_export_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_cell_export_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_cell_export_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_cell_export_log: "{{ tripleo_overcloud_cell_export_home_dir }}/overcloud_cell_export.log"
tripleo_overcloud_cell_export_log_combine: true

View File

@ -53,8 +53,9 @@
async: "{{ tripleo_overcloud_cell_export_timeout }}"
poll: "{{ tripleo_overcloud_cell_export_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_cell_export_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -15,6 +15,7 @@ Role Variables
* `tripleo_overcloud_config_download_config_type`: (String) Type of object config to extract from the deployment
* `tripleo_overcloud_config_download_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_config_download_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_config_download_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_config_download_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_config_download_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_config_download_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_config_download_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -5,6 +5,7 @@ tripleo_overcloud_config_download_config_dir:
tripleo_overcloud_config_download_config_type:
tripleo_overcloud_config_download_debug: false
tripleo_overcloud_config_download_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_config_download_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_config_download_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_config_download_log: "{{ tripleo_overcloud_config_download_home_dir }}/overcloud_config_download.log"
tripleo_overcloud_config_download_log_combine: true

View File

@ -52,8 +52,9 @@
async: "{{ tripleo_overcloud_config_download_timeout }}"
poll: "{{ tripleo_overcloud_config_download_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_config_download_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_container_image_build_config_files`: (List) YAML COnfig file(s) specifyign the image to build. Default: []
* `tripleo_overcloud_container_image_build_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_container_image_build_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_container_image_build_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_container_image_build_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_container_image_build_excludes`: (List) Name of containers to exclude from the build. Default: []
* `tripleo_overcloud_container_image_build_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_container_image_build_kolla_config_file`: (String) Path to Kolla config file.

View File

@ -5,6 +5,7 @@ tripleo_overcloud_container_image_build_config_files: []
tripleo_overcloud_container_image_build_debug: false
tripleo_overcloud_container_image_build_excludes: []
tripleo_overcloud_container_image_build_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_container_image_build_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_container_image_build_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_container_image_build_kolla_config_file:
tripleo_overcloud_container_image_build_list_dependencies: false

View File

@ -49,7 +49,9 @@
async: "{{ tripleo_overcloud_container_image_build_timeout }}"
poll: "{{ tripleo_overcloud_container_image_build_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_container_image_build_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -19,6 +19,7 @@ Role Variables
* `tripleo_overcloud_container_image_prepare_environment_files`: (List) List of environment files specifying which services are containerized. Default: []
* `tripleo_overcloud_container_image_prepare_excludes`: (List) List of patterns to match the imagename against to exclude from the output. Default: []
* `tripleo_overcloud_container_image_prepare_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_container_image_prepare_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_container_image_prepare_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_container_image_prepare_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_container_image_prepare_includes`: (List) List of patterns to match the imagename against to include in the output. Default: []
* `tripleo_overcloud_container_image_prepare_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true

View File

@ -6,6 +6,7 @@ tripleo_overcloud_container_image_prepare_environment_directory:
tripleo_overcloud_container_image_prepare_environment_files: []
tripleo_overcloud_container_image_prepare_excludes: []
tripleo_overcloud_container_image_prepare_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_container_image_prepare_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_container_image_prepare_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_container_image_prepare_includes: []
tripleo_overcloud_container_image_prepare_log: "{{ tripleo_overcloud_container_image_prepare_home_dir }}/overcloud_container_image_prepare.log"

View File

@ -73,8 +73,9 @@
async: "{{ tripleo_overcloud_container_image_prepare_timeout }}"
poll: "{{ tripleo_overcloud_container_image_prepare_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_container_image_prepare_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -16,6 +16,7 @@ Role Variables
* `tripleo_overcloud_container_image_tag_discover_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_container_image_tag_discover_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_container_image_tag_discover_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_container_image_tag_discover_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_container_image_tag_discover_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_container_image_tag_discover_image`: (String) REQUIRED. Fully qualified name of the image to discover the tag.
* `tripleo_overcloud_container_image_tag_discover_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true

View File

@ -3,6 +3,7 @@
openstack_bin: openstack
tripleo_overcloud_container_image_tag_discover_debug: false
tripleo_overcloud_container_image_tag_discover_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_container_image_tag_discover_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_container_image_tag_discover_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_container_image_tag_discover_image:
tripleo_overcloud_container_image_tag_discover_log: "{{ tripleo_overcloud_container_image_tag_discover_home_dir }}/overcloud_container_image_tag_discover.log"

View File

@ -46,8 +46,9 @@
async: "{{ tripleo_overcloud_container_image_tag_discover_timeout }}"
poll: "{{ tripleo_overcloud_container_image_tag_discover_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_container_image_tag_discover_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -18,6 +18,7 @@ Role Variables
* `tripleo_overcloud_container_image_upload_config_files`: (List) REQUIRED. YAML config files specifying images. Default: []
* `tripleo_overcloud_container_image_upload_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_container_image_upload_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_container_image_upload_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_container_image_upload_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_container_image_upload_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_container_image_upload_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_container_image_upload_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -5,6 +5,7 @@ tripleo_overcloud_container_image_upload_cleanup:
tripleo_overcloud_container_image_upload_config_files: []
tripleo_overcloud_container_image_upload_debug: false
tripleo_overcloud_container_image_upload_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_container_image_upload_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_container_image_upload_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_container_image_upload_log: "{{ tripleo_overcloud_container_image_upload_home_dir }}/overcloud_container_image_upload.log"
tripleo_overcloud_container_image_upload_log_combine: true

View File

@ -45,8 +45,9 @@
async: "{{ tripleo_overcloud_container_image_upload_timeout }}"
poll: "{{ tripleo_overcloud_container_image_upload_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_container_image_upload_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_credentials_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_credentials_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_credentials_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_credentials_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_credentials_directory`: (String) The directory to create the rc files in. Defaults to current working directory which will be `tripleo_overcloud_credentials_home_dir`.
* `tripleo_overcloud_credentials_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_credentials_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true

View File

@ -4,6 +4,7 @@ openstack_bin: openstack
tripleo_overcloud_credentials_debug: false
tripleo_overcloud_credentials_directory:
tripleo_overcloud_credentials_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_credentials_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_credentials_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_credentials_log: "{{ tripleo_overcloud_credentials_home_dir }}/overcloud_credentials.log"
tripleo_overcloud_credentials_log_combine: true

View File

@ -47,7 +47,9 @@
async: "{{ tripleo_overcloud_credentials_timeout }}"
poll: "{{ tripleo_overcloud_credentials_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_credentials_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_delete_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_delete_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_delete_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_delete_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_delete_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_delete_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_delete_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -3,6 +3,7 @@
openstack_bin: openstack
tripleo_overcloud_delete_debug: false
tripleo_overcloud_delete_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_delete_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_delete_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_delete_log: "{{ tripleo_overcloud_delete_home_dir }}/overcloud_delete.log"
tripleo_overcloud_delete_log_combine: true

View File

@ -47,8 +47,9 @@
async: "{{ tripleo_overcloud_delete_timeout }}"
poll: "{{ tripleo_overcloud_delete_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_delete_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -25,6 +25,7 @@ Role Variables
* `tripleo_overcloud_deploy_environment_files`: (List) A list of environment file paths for the deployment. Should not be used with environment dirs.
* `tripleo_overcloud_deploy_force_postconfig`: (Boolean) Force the overclodu post-deployment configuration. Default: false
* `tripleo_overcloud_deploy_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By defaukt uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` isn't defined.
* `tripleo_overcloud_deploy_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_deploy_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_deploy_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_deploy_inflight_validations`: (Boolean) Flag to enable inflight validations. Default: false
* `tripleo_overcloud_deploy_libvirt_type`: (String) Libvirt domain time. Setting `NovaComputeLibvirtType` in an environment file is prefered over this option.

View File

@ -15,6 +15,7 @@ tripleo_overcloud_deploy_environment_dirs: []
tripleo_overcloud_deploy_environment_files: []
tripleo_overcloud_deploy_force_postconfig: false
tripleo_overcloud_deploy_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_deploy_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_deploy_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_deploy_inflight_validations: false
tripleo_overcloud_deploy_libvirt_type:

View File

@ -100,7 +100,9 @@
async: "{{ tripleo_overcloud_deploy_timeout }}"
poll: "{{ tripleo_overcloud_deploy_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_deploy_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -15,6 +15,7 @@ Role Variables
* `tripleo_overcloud_export_debug`: (Boolean) Flag to print out the command that is run. Default: False
* `tripleo_overcloud_export_force_overwrite`: (Boolean) Overwrite the output file if it exists. Default: false
* `tripleo_overcloud_export_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_export_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_export_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_export_home_dir`: (String) Location to runt he command in. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_export_no_password_excludes`: (Boolean) Do not exclude certain passwords from the export. Default: false
* `tripleo_overcloud_export_os_cloud`: (String) (String) OS_CLOUD value to use when running the command. If `tripleo_os_cloud` is defined, it will be the default. Otherwise the default is ''. This variable takes precedence over `tripleo_overcloud_export_rc_file`.

View File

@ -5,6 +5,7 @@ tripleo_overcloud_export_config_download_dir:
tripleo_overcloud_export_debug: false
tripleo_overcloud_export_force_overwrite: false
tripleo_overcloud_export_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_export_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_export_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_export_no_password_excludes: false
tripleo_overcloud_export_os_cloud: "{{ tripleo_os_cloud | default('') }}"

View File

@ -40,6 +40,9 @@
warn: false
register: tripleo_overcloud_export_result
changed_when: false
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_export_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_external_update_run_debug`: (Boolean) Flag to print out the command that is run. Default: false
* `tripleo_overcloud_external_update_run_extra_vars`: (List) List of key=value or yaml/json file ansible refernce. Default: []
* `tripleo_overcloud_external_update_run_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_external_update_run_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_external_update_run_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_external_update_run_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_external_update_run_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_external_update_run_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -4,6 +4,7 @@ openstack_bin: openstack
tripleo_overcloud_external_update_run_debug: false
tripleo_overcloud_external_update_run_extra_vars: []
tripleo_overcloud_external_update_run_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_external_update_run_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_external_update_run_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_external_update_run_log: "{{ tripleo_overcloud_external_update_run_home_dir }}/overcloud_external_update_run.log"
tripleo_overcloud_external_update_run_log_combine: true

View File

@ -54,7 +54,9 @@
async: "{{ tripleo_overcloud_external_update_run_timeout }}"
poll: "{{ tripleo_overcloud_external_update_run_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_external_update_run_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_external_upgrade_run_debug`: (Boolean) Flag to print out the command that is run. Default: false
* `tripleo_overcloud_external_upgrade_run_extra_vars`: (List) List of key=value or yaml/json file ansible refernce. Default: []
* `tripleo_overcloud_external_upgrade_run_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_external_upgrade_run_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_external_upgrade_run_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_external_upgrade_run_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_external_upgrade_run_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_external_upgrade_run_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -4,6 +4,7 @@ openstack_bin: openstack
tripleo_overcloud_external_upgrade_run_debug: false
tripleo_overcloud_external_upgrade_run_extra_vars: []
tripleo_overcloud_external_upgrade_run_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_external_upgrade_run_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_external_upgrade_run_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_external_upgrade_run_log: "{{ tripleo_overcloud_external_upgrade_run_home_dir }}/overcloud_external_upgrade_run.log"
tripleo_overcloud_external_upgrade_run_log_combine: true

View File

@ -54,7 +54,9 @@
async: "{{ tripleo_overcloud_external_upgrade_run_timeout }}"
poll: "{{ tripleo_overcloud_external_upgrade_run_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_external_upgrade_run_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -12,6 +12,7 @@ Role Variables
--------------
* `tripleo_overcloud_ffwd_upgrade_converge_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_ffwd_upgrade_converge_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_ffwd_upgrade_converge_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_upgrade_ffwd_converge_answers_file`: (String) File path to a deployment answers file.
* `tripleo_overcloud_upgrade_ffwd_converge_baremetal_deployment`: (String) File path to a baremetal deployment configuration.
* `tripleo_overcloud_upgrade_ffwd_converge_config_download_timeout`: (Integer) Timeout in minutes for the config-download steps.

View File

@ -14,6 +14,7 @@ tripleo_overcloud_ffwd_upgrade_converge_environment_dirs: []
tripleo_overcloud_ffwd_upgrade_converge_environment_files: []
tripleo_overcloud_ffwd_upgrade_converge_force_postconfig: false
tripleo_overcloud_ffwd_upgrade_converge_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_ffwd_upgrade_converge_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_ffwd_upgrade_converge_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_ffwd_upgrade_converge_inflight_validations: false
tripleo_overcloud_ffwd_upgrade_converge_libvirt_type:

View File

@ -99,7 +99,9 @@
async: "{{ tripleo_overcloud_ffwd_upgrade_converge_timeout }}"
poll: "{{ tripleo_overcloud_ffwd_upgrade_converge_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_ffwd_upgrade_converge_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -17,6 +17,7 @@ Role Variables
* `tripleo_overcloud_ffwd_upgrade_prepare_config_download_timeout`: (Integer) Timeout in minutes for the config-download steps.
* `tripleo_overcloud_ffwd_upgrade_prepare_debug`: (Boolean) Flag to print out the command that is run. Default: false
* `tripleo_overcloud_ffwd_upgrade_prepare_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_ffwd_upgrade_prepare_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_ffwd_upgrade_prepare_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_ffwd_upgrade_prepare_deployed_server`: (Boolean) Flag to use pre-provisioned nodes. Default: false
* `tripleo_overcloud_ffwd_upgrade_prepare_disable_password_generation`: (Boolean) Flag to disable password generation. Default: false
* `tripleo_overcloud_ffwd_upgrade_prepare_disable_validations`: (Boolean) Flag to disable validations. Default: false

View File

@ -14,6 +14,7 @@ tripleo_overcloud_ffwd_upgrade_prepare_environment_dirs: []
tripleo_overcloud_ffwd_upgrade_prepare_environment_files: []
tripleo_overcloud_ffwd_upgrade_prepare_force_postconfig: false
tripleo_overcloud_ffwd_upgrade_prepare_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_ffwd_upgrade_prepare_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_ffwd_upgrade_prepare_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_ffwd_upgrade_prepare_inflight_validations: false
tripleo_overcloud_ffwd_upgrade_prepare_libvirt_type:

View File

@ -99,7 +99,9 @@
async: "{{ tripleo_overcloud_ffwd_upgrade_prepare_timeout }}"
poll: "{{ tripleo_overcloud_ffwd_upgrade_prepare_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_ffwd_upgrade_prepare_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_ffwd_upgrade_run_debug`: (Boolean) Flag to print out the command that is run. Default: false
* `tripleo_overcloud_ffwd_upgrade_run_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_ffwd_upgrade_run_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_ffwd_upgrade_run_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_ffwd_upgrade_run_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_ffwd_upgrade_run_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_ffwd_upgrade_run_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -3,6 +3,7 @@
openstack_bin: openstack
tripleo_overcloud_ffwd_upgrade_run_debug: false
tripleo_overcloud_ffwd_upgrade_run_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_ffwd_upgrade_run_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_ffwd_upgrade_run_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_ffwd_upgrade_run_log: "{{ tripleo_overcloud_ffwd_upgrade_run_home_dir }}/overcloud_ffwd_upgrade_run.log"
tripleo_overcloud_ffwd_upgrade_run_log_combine: true

View File

@ -50,7 +50,9 @@
async: "{{ tripleo_overcloud_ffwd_upgrade_run_timeout }}"
poll: "{{ tripleo_overcloud_ffwd_upgrade_run_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_ffwd_upgrade_run_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -16,6 +16,7 @@ Role Variables
* `tripleo_overcloud_generate_fencing_delay`: (Integer) Number of seconds to wait before fencing is started.
* `tripleo_overcloud_generate_fencing_environment_file`: (String) REQUIRED. Path to the environment file.
* `tripleo_overcloud_generate_fencing_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_generate_fencing_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_generate_fencing_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_generate_fencing_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_generate_fencing_ipmi_cipher`: (String) Cipher squit to use (same as ipmitool -C)
* `tripleo_overcloud_generate_fencing_ipmi_lanplus`: (Boolean) Use lanplus. Option deprecated because it's the default. Default: false

View File

@ -6,6 +6,7 @@ tripleo_overcloud_generate_fencing_debug: false
tripleo_overcloud_generate_fencing_delay:
tripleo_overcloud_generate_fencing_environment_file:
tripleo_overcloud_generate_fencing_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_generate_fencing_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_generate_fencing_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_generate_fencing_ipmi_cipher:
tripleo_overcloud_generate_fencing_ipmi_lanplus: false

View File

@ -57,7 +57,9 @@
async: "{{ tripleo_overcloud_generate_fencing_timeout }}"
poll: "{{ tripleo_overcloud_generate_fencing_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_generate_fencing_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -17,6 +17,7 @@ Role Variables
* `tripleo_overcloud_image_build_dib_yum_repo_conf`: (String) String containing the path to the yum files for the image building process. Default: "/etc/yum.repos.d/*"
* `tripleo_overcloud_image_build_extra_env_vars`: (Dictionary) Dictionary containing extra environment variables to be set for the build. Default: {}
* `tripleo_overcloud_image_build_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_image_build_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_image_build_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_image_build_home_dir`: (String) Path that the command should be executed in. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_image_build_image_names`: (List) List of image names to build.
* `tripleo_overcloud_image_build_log_combine`: (Boolean) Flag to combine stdout and stderr in the logfile. Default: true

View File

@ -7,6 +7,7 @@ tripleo_overcloud_image_build_dib_local_image:
tripleo_overcloud_image_build_dib_yum_repo_conf: "/etc/yum.repos.d/*"
tripleo_overcloud_image_build_extra_env_vars: {}
tripleo_overcloud_image_build_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_image_build_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_image_build_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_image_build_image_names: []
tripleo_overcloud_image_build_log: "{{ tripleo_overcloud_image_build_home_dir }}/overcloud_image_build.log"

View File

@ -56,3 +56,6 @@
poll: "{{ tripleo_overcloud_image_build_poll }}"
register: tripleo_overcloud_image_build_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_image_build_generate_scripts_only|bool

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_image_upload_architecture`: (String) Architecture type for the images being uploaded.
* `tripleo_overcloud_image_upload_debug`: (Boolean) Flag to print out the command that is run. Default: False
* `tripleo_overcloud_image_upload_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_image_upload_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_image_upload_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_image_upload_home_dir`: (String) Home directory for the undercloud user. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_image_upload_http_boot`: (String) Root directory for the ironic-pytho-agent-image
* `tripleo_overcloud_image_upload_image_path`: (String) Path to directory overcloud images. By default the command will use the images in `tripleo_overcloud_image_upload_home_dir` if this is not specified.

View File

@ -4,6 +4,7 @@ openstack_bin: openstack
tripleo_overcloud_image_upload_architecture:
tripleo_overcloud_image_upload_debug: false
tripleo_overcloud_image_upload_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_image_upload_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_image_upload_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_image_upload_http_boot:
tripleo_overcloud_image_upload_image_path:

View File

@ -63,6 +63,9 @@
register: tripleo_overcloud_image_upload_result
poll: "{{ tripleo_overcloud_image_upload_poll }}"
changed_when: false
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_image_upload_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_netenv_validate_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_netenv_validate_file`: (String) REQUIRED. Path to the network environment file
* `tripleo_overcloud_netenv_validate_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_netenv_validate_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_netenv_validate_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_netenv_validate_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_netenv_validate_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_netenv_validate_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -4,6 +4,7 @@ openstack_bin: openstack
tripleo_overcloud_netenv_validate_debug: false
tripleo_overcloud_netenv_validate_file:
tripleo_overcloud_netenv_validate_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_netenv_validate_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_netenv_validate_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_netenv_validate_log: "{{ tripleo_overcloud_netenv_validate_home_dir }}/overcloud_netenv_validate.log"
tripleo_overcloud_netenv_validate_log_combine: true

View File

@ -44,8 +44,9 @@
async: "{{ tripleo_overcloud_netenv_validate_timeout }}"
poll: "{{ tripleo_overcloud_netenv_validate_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_netenv_validate_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -5,6 +5,7 @@ tripleo_overcloud_node_bios_configure_all_manageable: false
tripleo_overcloud_node_bios_configure_configuration:
tripleo_overcloud_node_bios_configure_debug: false
tripleo_overcloud_node_bios_configure_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_node_bios_configure_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_node_bios_configure_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_node_bios_configure_node_uuids: []
tripleo_overcloud_node_bios_configure_os_cloud: "{{ tripleo_os_cloud | default('') }}"

View File

@ -39,6 +39,9 @@
warn: false
register: tripleo_overcloud_node_bios_configure_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_node_bios_configure_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_node_delete_nodes`: Node ID(s) to delete (otherwise specified in the --baremetal-deployment file)
* `tripleo_overcloud_node_delete_baremetal_deployment`: Configuration file describing the baremetal deployment
* `tripleo_overcloud_node_delete_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_node_delete_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_node_delete_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_node_delete_home_dir`: (String) Location to run the command in. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_node_delete_stack`: Name or ID of heat stack to scale (default=Env: OVERCLOUD_STACK_NAME)
* `tripleo_overcloud_node_delete_templates`: The directory containing the Heat templates to deploy.

View File

@ -5,6 +5,7 @@ tripleo_overcloud_node_delete_baremetal_deployment:
tripleo_overcloud_node_delete_debug: false
tripleo_overcloud_node_delete_environment_file:
tripleo_overcloud_node_delete_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_node_delete_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_node_delete_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_node_delete_nodes: []
tripleo_overcloud_node_delete_os_cloud: "{{ tripleo_os_cloud | default('') }}"

View File

@ -43,6 +43,9 @@
warn: false
register: tripleo_overcloud_node_delete_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_node_delete_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -5,6 +5,7 @@ tripleo_overcloud_node_discover_concurrency:
tripleo_overcloud_node_discover_credentials:
tripleo_overcloud_node_discover_debug: false
tripleo_overcloud_node_discover_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_node_discover_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_node_discover_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_node_discover_instance_boot_option:
tripleo_overcloud_node_discover_introspect: false

View File

@ -47,6 +47,9 @@
warn: false
register: tripleo_overcloud_node_discover_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_node_discover_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -15,6 +15,7 @@ Role Variables
* `tripleo_overcloud_node_import_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_node_import_environment_file`: (String) Path to the file that contains the baremetal node information. Can be a JSON, YAML or CSV file. Default: environment.json
* `tripleo_overcloud_node_import_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_node_import_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_node_import_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_node_import_home_dir`: (String) Path to the directory to execute the command in. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_node_import_http_boot`: (String) Root directory for the ironic-python-agent image.
* `tripleo_overcloud_node_import_instance_boot_option`: (String) Wheither to set instances for booting from local hard drive (local) or network (netboot).

View File

@ -5,6 +5,7 @@ tripleo_overcloud_node_import_concurrency:
tripleo_overcloud_node_import_debug: false
tripleo_overcloud_node_import_environment_file: environment.json
tripleo_overcloud_node_import_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_node_import_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_node_import_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_node_import_http_boot:
tripleo_overcloud_node_import_instance_boot_option:

View File

@ -50,6 +50,7 @@
poll: "{{ tripleo_overcloud_node_import_poll }}"
register: tripleo_overcloud_node_import_result
changed_when: true
when: not tripleo_overcloud_node_import_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -15,6 +15,7 @@ Role Variables
* `tripleo_overcloud_node_provision_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_node_provision_deployment_file`: (String) REQUIRED. File path to the deployment file describing the nodes.
* `tripleo_overcloud_node_provision_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_node_provision_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_node_provision_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_node_provision_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_node_provision_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_node_provision_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_profiles_list_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_profiles_list_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_profiles_list_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_profiles_list_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_profiles_list_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_profiles_list_all`: List all nodes, even those not available to Nova.
* `tripleo_overcloud_profiles_list_control_flavor`: (Deprecated in U) Nova flavor to use for control nodes.

View File

@ -8,6 +8,7 @@ tripleo_overcloud_profiles_list_compute_flavor:
tripleo_overcloud_profiles_list_control_flavor:
tripleo_overcloud_profiles_list_debug: false
tripleo_overcloud_profiles_list_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_profiles_list_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_profiles_list_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_profiles_list_os_cloud: "{{ tripleo_os_cloud | default('') }}"
tripleo_overcloud_profiles_list_rc_file: "{{ tripleo_rc_file | default(ansible_env.HOME ~ '/stackrc') }}"

View File

@ -37,6 +37,9 @@
environment: "{{ _list_env }}"
register: tripleo_overcloud_profiles_list_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_profiles_list_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_profiles_match_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_profiles_match_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_profiles_match_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_profiles_match_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_profiles_match_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_profiles_match_all`: List all nodes, even those not available to Nova.
* `tripleo_overcloud_profiles_list_control_flavor`: (Deprecated in U) Nova flavor to use for control nodes.

View File

@ -12,6 +12,7 @@ tripleo_overcloud_profiles_match_control_flavor:
tripleo_overcloud_profiles_match_control_scale:
tripleo_overcloud_profiles_match_debug: false
tripleo_overcloud_profiles_match_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_profiles_match_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_profiles_match_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_profiles_match_os_cloud: "{{ tripleo_os_cloud | default('') }}"
tripleo_overcloud_profiles_match_rc_file: "{{ tripleo_rc_file | default(ansible_env.HOME ~ '/stackrc') }}"

View File

@ -53,6 +53,9 @@
environment: "{{ _match_env }}"
register: tripleo_overcloud_profiles_match_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_profiles_match_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -14,6 +14,7 @@ Role Variables
* `tripleo_overcloud_raid_create_configuration`: (String) REQUIRED. Path to file containing raid configuration.
* `tripleo_overcloud_raid_create_debug`: (Boolean) Flag to print out the delete command. Default: False
* `tripleo_overcloud_raid_create_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_raid_create_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_raid_create_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_raid_create_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_raid_create_log_combine`: (Boolean) Flag to enable captching stderr with stdout. Default: true
* `tripleo_overcloud_raid_create_log_output`: (Boolean) Flag to enable logging to a file. Since the output of this command can be large, it is not recommended to disable this. Default: true

View File

@ -4,6 +4,7 @@ openstack_bin: openstack
tripleo_overcloud_raid_create_configuration:
tripleo_overcloud_raid_create_debug: false
tripleo_overcloud_raid_create_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_raid_create_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_raid_create_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_raid_create_log: "{{ tripleo_overcloud_raid_create_home_dir }}/CHANGEME.log"
tripleo_overcloud_raid_create_log_combine: true

View File

@ -46,7 +46,9 @@
async: "{{ tripleo_overcloud_raid_create_timeout }}"
poll: "{{ tripleo_overcloud_raid_create_poll }}"
changed_when: false
when: not ansible_check_mode|bool
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_raid_create_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -15,6 +15,7 @@ Role Variables
* `tripleo_overcloud_roles_generate_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_roles_generate_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_roles_generate_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_roles_generate_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_roles_generate_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_roles_generate_roles_path`: Filesystem path containing the role yaml files. By default this is in tripleo-heat-templates/roles.
* `tripleo_overcloud_roles_generate_output_file`: File to capture all output to. For example, roles_data.yaml

View File

@ -3,6 +3,7 @@
openstack_bin: openstack
tripleo_overcloud_roles_generate_debug: false
tripleo_overcloud_roles_generate_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_roles_generate_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_roles_generate_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_roles_generate_roles_path: /usr/share/openstack-tripleo-heat-templates/roles
tripleo_overcloud_roles_generate_output_file: "{{ tripleo_overcloud_roles_generate_home_dir }}/roles_data.yaml"

View File

@ -35,6 +35,9 @@
environment: "{{ _generate_roles_env }}"
register: tripleo_overcloud_roles_generate_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_roles_generate_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_roles_list_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_roles_list_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_roles_list_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_roles_list_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_roles_list_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_roles_list_name`: The name of the plan, which is used for the object storage container, workflow environment and orchestration stack names.
* `tripleo_overcloud_roles_list_detail`: Include details about each role.

View File

@ -2,6 +2,7 @@
# defaults file for tripleo_overcloud_roles_list
openstack_bin: openstack
tripleo_overcloud_roles_list_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_roles_list_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_roles_list_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_roles_list_debug: false
tripleo_overcloud_roles_list_name:

View File

@ -34,6 +34,9 @@
environment: "{{ _list_env }}"
register: tripleo_overcloud_roles_list_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_roles_list_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_roles_show_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_roles_show_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_roles_show_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_roles_show_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_roles_show_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_roles_show_role`: Role to display more information about.
* `tripleo_overcloud_roles_show_name`: The name of the plan, which is used for the object storage container,

View File

@ -2,6 +2,7 @@
# defaults file for tripleo_overcloud_roles_show
openstack_bin: openstack
tripleo_overcloud_roles_show_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_roles_show_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_roles_show_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_roles_show_debug: false
tripleo_overcloud_roles_show_role:

View File

@ -33,6 +33,9 @@
environment: "{{ _show_env }}"
register: tripleo_overcloud_roles_show_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_roles_show_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -13,6 +13,7 @@ Role Variables
* `tripleo_overcloud_support_report_collect_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
* `tripleo_overcloud_support_report_collect_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_support_report_collect_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_support_report_collect_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_support_report_collect_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_support_report_collect_server_name`: Server name, group name, or partial name to match. For example "Controller" will match all controllers for an environment.
* `tripleo_overcloud_support_report_collect_output_dir`: Output directory for the report.

View File

@ -2,6 +2,7 @@
# defaults file for tripleo_overcloud_support_report_collect
openstack_bin: openstack
tripleo_overcloud_support_report_collect_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_support_report_collect_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_support_report_collect_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_support_report_collect_debug: false
tripleo_overcloud_support_report_collect_server_name:

View File

@ -33,6 +33,9 @@
environment: "{{ _report_env }}"
register: tripleo_overcloud_support_report_collect_result
changed_when: true
when:
- not ansible_check_mode|bool
- not tripleo_overcloud_support_report_collect_generate_scripts_only|bool
- name: Set output fact
set_fact:

View File

@ -24,6 +24,7 @@ Role Variables
* `tripleo_overcloud_update_converge_environment_files`: (List) A list of environment file paths for the deployment. Should not be used with environment dirs.
* `tripleo_overcloud_update_converge_force_postconfig`: (Boolean) Force the overclodu post-deployment configuration. Default: false
* `tripleo_overcloud_update_converge_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
* `tripleo_overcloud_update_converge_generate_scripts_only`: (Boolean) Do not run the actual command - to be used in conjonction with `tripleo_overcloud_update_converge_generate_scripts`. By default uses the value of `tripleo_generate_scripts_only` or False if `tripleo_generate_scripts_only` is not defined.
* `tripleo_overcloud_update_converge_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
* `tripleo_overcloud_update_converge_inflight_validations`: (Boolean) Flag to enable inflight validations. Default: false
* `tripleo_overcloud_update_converge_libvirt_type`: (String) Libvirt domain time. Setting `NovaComputeLibvirtType` in an environment file is prefered over this option.

View File

@ -14,6 +14,7 @@ tripleo_overcloud_update_converge_environment_dirs: []
tripleo_overcloud_update_converge_environment_files: []
tripleo_overcloud_update_converge_force_postconfig: false
tripleo_overcloud_update_converge_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
tripleo_overcloud_update_converge_generate_scripts_only: "{{ tripleo_generate_scripts_only | default(False) }}"
tripleo_overcloud_update_converge_home_dir: "{{ ansible_env.HOME }}"
tripleo_overcloud_update_converge_inflight_validations: false
tripleo_overcloud_update_converge_libvirt_type:

Some files were not shown because too many files have changed in this diff Show More