Merge "Fix node scaling"
This commit is contained in:
commit
73938d3913
@ -1,7 +1,7 @@
|
|||||||
- hosts: "{{ deploy_source_host }}"
|
- hosts: "{{ deploy_source_host }}"
|
||||||
name: Gather facts from undercloud
|
name: Gather facts from undercloud
|
||||||
gather_facts: yes
|
gather_facts: yes
|
||||||
any_errors_fatal: yes
|
any_errors_fatal: "{{ not ignore_unreachable | default(true) }}"
|
||||||
ignore_unreachable: "{{ ignore_unreachable | default(false) }}"
|
ignore_unreachable: "{{ ignore_unreachable | default(false) }}"
|
||||||
become: false
|
become: false
|
||||||
tags:
|
tags:
|
||||||
@ -10,7 +10,7 @@
|
|||||||
- hosts: "{{ deploy_target_host }}"
|
- hosts: "{{ deploy_target_host }}"
|
||||||
name: Gather facts from overcloud
|
name: Gather facts from overcloud
|
||||||
gather_facts: yes
|
gather_facts: yes
|
||||||
any_errors_fatal: yes
|
any_errors_fatal: "{{ not ignore_unreachable | default(true) }}"
|
||||||
ignore_unreachable: "{{ ignore_unreachable | default(false) }}"
|
ignore_unreachable: "{{ ignore_unreachable | default(false) }}"
|
||||||
tags:
|
tags:
|
||||||
- facts
|
- facts
|
||||||
@ -18,7 +18,8 @@
|
|||||||
- hosts: all
|
- hosts: all
|
||||||
name: Load global variables
|
name: Load global variables
|
||||||
gather_facts: "{{ gather_facts | default(false) }}"
|
gather_facts: "{{ gather_facts | default(false) }}"
|
||||||
any_errors_fatal: yes
|
any_errors_fatal: "{{ not ignore_unreachable | default(true) }}"
|
||||||
|
ignore_unreachable: "{{ ignore_unreachable | default(false) }}"
|
||||||
tasks:
|
tasks:
|
||||||
- include_vars: global_vars.yaml
|
- include_vars: global_vars.yaml
|
||||||
no_log: true
|
no_log: true
|
||||||
|
@ -1172,7 +1172,7 @@ outputs:
|
|||||||
# Without up-to-date facts, we're creating a potential failure
|
# Without up-to-date facts, we're creating a potential failure
|
||||||
# scenario.
|
# scenario.
|
||||||
gather_facts: true
|
gather_facts: true
|
||||||
any_errors_fatal: yes
|
ignore_unreachable: true
|
||||||
become: false
|
become: false
|
||||||
vars:
|
vars:
|
||||||
bootstrap_server_id: BOOTSTRAP_SERVER_ID
|
bootstrap_server_id: BOOTSTRAP_SERVER_ID
|
||||||
|
Loading…
x
Reference in New Issue
Block a user