|
@@ -12,47 +12,48 @@
|
|
- name: validate the Heat template
|
|
- name: validate the Heat template
|
|
command: openstack orchestration template validate -t {{ stack_template_path }}
|
|
command: openstack orchestration template validate -t {{ stack_template_path }}
|
|
register: template_validation_output
|
|
register: template_validation_output
|
|
- when: openstack_cli_exists|succeeded
|
|
|
|
|
|
+ when: openstack_cli_exists is succeeded
|
|
|
|
|
|
- name: Check if the stack exists
|
|
- name: Check if the stack exists
|
|
command: openstack stack show {{ openshift_openstack_stack_name }}
|
|
command: openstack stack show {{ openshift_openstack_stack_name }}
|
|
ignore_errors: True
|
|
ignore_errors: True
|
|
register: stack_exists
|
|
register: stack_exists
|
|
- when: openstack_cli_exists|succeeded
|
|
|
|
|
|
+ when: openstack_cli_exists is succeeded
|
|
|
|
|
|
- name: Dry-run the stack (create)
|
|
- name: Dry-run the stack (create)
|
|
command: openstack stack create --dry-run -t {{ stack_template_path }} {{ openshift_openstack_stack_name }}
|
|
command: openstack stack create --dry-run -t {{ stack_template_path }} {{ openshift_openstack_stack_name }}
|
|
ignore_errors: True
|
|
ignore_errors: True
|
|
register: stack_create_dry_run_output
|
|
register: stack_create_dry_run_output
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - stack_exists|failed
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - stack_exists is failed
|
|
|
|
|
|
- name: Dry-run the stack (update)
|
|
- name: Dry-run the stack (update)
|
|
command: openstack stack update --dry-run -t {{ stack_template_path }} {{ openshift_openstack_stack_name }}
|
|
command: openstack stack update --dry-run -t {{ stack_template_path }} {{ openshift_openstack_stack_name }}
|
|
ignore_errors: True
|
|
ignore_errors: True
|
|
register: stack_update_dry_run_output
|
|
register: stack_update_dry_run_output
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - stack_exists|succeeded
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - stack_exists is succeeded
|
|
|
|
|
|
- name: Show the dry run errors (create)
|
|
- name: Show the dry run errors (create)
|
|
debug: var=stack_create_dry_run_output.stderr
|
|
debug: var=stack_create_dry_run_output.stderr
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - stack_create_dry_run_output|failed
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - stack_create_dry_run_output is failed
|
|
|
|
|
|
- name: Show the dry run errors (update)
|
|
- name: Show the dry run errors (update)
|
|
debug: var=stack_update_dry_run_output.stderr
|
|
debug: var=stack_update_dry_run_output.stderr
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - stack_update_dry_run_output|failed
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - stack_update_dry_run_output is failed
|
|
|
|
|
|
- fail:
|
|
- fail:
|
|
msg: The Heat stack creation failed. Please inspect the message above.
|
|
msg: The Heat stack creation failed. Please inspect the message above.
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - (stack_create_dry_run_output|failed or stack_update_dry_run_output|failed)
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - ( stack_create_dry_run_output is failed or
|
|
|
|
+ stack_update_dry_run_output is failed)
|
|
|
|
|
|
- name: Handle the Stack (create/delete)
|
|
- name: Handle the Stack (create/delete)
|
|
ignore_errors: True
|
|
ignore_errors: True
|
|
@@ -67,19 +68,19 @@
|
|
command: openstack stack failures list {{ openshift_openstack_stack_name }}
|
|
command: openstack stack failures list {{ openshift_openstack_stack_name }}
|
|
register: stack_create_failures
|
|
register: stack_create_failures
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - stack_create|failed
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - stack_create is failed
|
|
|
|
|
|
- name: show errors in stack creation, if any
|
|
- name: show errors in stack creation, if any
|
|
debug: var=stack_create_failures
|
|
debug: var=stack_create_failures
|
|
when:
|
|
when:
|
|
- - openstack_cli_exists|succeeded
|
|
|
|
- - stack_create|failed
|
|
|
|
|
|
+ - openstack_cli_exists is succeeded
|
|
|
|
+ - stack_create is failed
|
|
|
|
|
|
- fail:
|
|
- fail:
|
|
msg: Stack creation failed
|
|
msg: Stack creation failed
|
|
when:
|
|
when:
|
|
- - stack_create|failed
|
|
|
|
|
|
+ - stack_create is failed
|
|
|
|
|
|
- name: Add the new nodes to the inventory
|
|
- name: Add the new nodes to the inventory
|
|
meta: refresh_inventory
|
|
meta: refresh_inventory
|