Files
tripleo-operator-ansible/roles/tripleo_deploy/defaults/main.yml
Bogdan Dobrelya 378c292104 Properly control debug logs for standalone
'openstack tripleo deploy' should be invoked with --debug
in order to display events from ansible would be hidden with
no_log otherwise:

no_log: "{{ not ((ansible_verbosity | int) >= 2) | bool }}"

And ansible_verbosity in tripleoclient only gets >=2 whenever
the openstack cliff's app.options.debug=True or
app_args.verbose_level > 1.

Add tripleo_deploy_debug_arg to control that. It is defaults to
False.

Depends-On: https://review.opendev.org/730883
Change-Id: I1464d895d579d83955e968413741aac80b9af0f0
Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
2020-05-28 12:05:02 +02:00

43 lines
1.6 KiB
YAML

---
# defaults file for tripleo_deploy
openstack_bin: openstack
tripleo_deploy_become: true
tripleo_deploy_cleanup: false
tripleo_deploy_control_virtual_ip:
tripleo_deploy_debug: false
tripleo_deploy_debug_arg: false
tripleo_deploy_deployment_python_interpreter:
tripleo_deploy_deployment_user: "{{ ansible_env.USER }}"
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:
tripleo_deploy_home_dir: "{{ ansible_env.HOME }}"
tripleo_deploy_inflight_validations: false
tripleo_deploy_keep_running: false
tripleo_deploy_local_domain:
tripleo_deploy_local_ip:
tripleo_deploy_log: "{{ tripleo_deploy_home_dir }}/standalone_deploy.log"
tripleo_deploy_log_combine: true
tripleo_deploy_log_output: true
tripleo_deploy_networks_file:
tripleo_deploy_output_dir:
tripleo_deploy_output_only: false
tripleo_deploy_override_ansible_cfg:
tripleo_deploy_plan_environment_file:
tripleo_deploy_poll: 10
tripleo_deploy_public_virtual_ip:
tripleo_deploy_roles_file: "{{ tripleo_deploy_templates }}/roles/Standalone.yaml"
tripleo_deploy_stack: standalone
tripleo_deploy_standalone: true
tripleo_deploy_standalone_role: Standalone
tripleo_deploy_templates: /usr/share/openstack-tripleo-heat-templates
tripleo_deploy_timeout: 5700
tripleo_deploy_timeout_arg: 90
tripleo_deploy_upgrade: false
tripleo_deploy_yes: true