123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- ---
- - name: Generate the templates
- include_tasks: generate-templates.yml
- when:
- - openshift_openstack_stack_state == 'present'
- - name: check for openstack client
- command: openstack
- register: openstack_cli_exists
- ignore_errors: True
- - name: validate the Heat template
- command: openstack orchestration template validate -t {{ stack_template_path }}
- register: template_validation_output
- when: openstack_cli_exists is succeeded
- - name: Check if the stack exists
- command: openstack stack show {{ openshift_openstack_stack_name }}
- ignore_errors: True
- register: stack_exists
- when: openstack_cli_exists is succeeded
- - name: Dry-run the stack (create)
- command: openstack stack create --dry-run -t {{ stack_template_path }} {{ openshift_openstack_stack_name }}
- ignore_errors: True
- register: stack_create_dry_run_output
- when:
- - openstack_cli_exists is succeeded
- - stack_exists is failed
- - name: Dry-run the stack (update)
- command: openstack stack update --dry-run -t {{ stack_template_path }} {{ openshift_openstack_stack_name }}
- ignore_errors: True
- register: stack_update_dry_run_output
- when:
- - openstack_cli_exists is succeeded
- - stack_exists is succeeded
- - name: Show the dry run errors (create)
- debug: var=stack_create_dry_run_output.stderr
- when:
- - openstack_cli_exists is succeeded
- - stack_create_dry_run_output is failed
- - name: Show the dry run errors (update)
- debug: var=stack_update_dry_run_output.stderr
- when:
- - openstack_cli_exists is succeeded
- - stack_update_dry_run_output is failed
- - fail:
- msg: The Heat stack creation failed. Please inspect the message above.
- when:
- - 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)
- ignore_errors: True
- register: stack_create
- os_stack:
- name: "{{ openshift_openstack_stack_name }}"
- state: "{{ openshift_openstack_stack_state }}"
- template: "{{ stack_template_path | default(omit) }}"
- wait: yes
- - name: get errors in stack creation, if any
- command: openstack stack failures list {{ openshift_openstack_stack_name }}
- register: stack_create_failures
- when:
- - openstack_cli_exists is succeeded
- - stack_create is failed
- - name: show errors in stack creation, if any
- debug: var=stack_create_failures
- when:
- - openstack_cli_exists is succeeded
- - stack_create is failed
- - fail:
- msg: Stack creation failed
- when:
- - stack_create is failed
- - name: Add the new nodes to the inventory
- meta: refresh_inventory
- - name: Legacy LBaaSv2 SG OpenShift API correction
- os_port:
- state: present
- name: "{{ openshift_openstack_api_lb_port_id }}"
- security_groups:
- - "{{ openshift_openstack_api_lb_sg_id }}"
- when:
- - openshift_openstack_api_lb_provider|default(None) == "haproxy"
- - name: CleanUp
- include_tasks: cleanup.yml
- when:
- - openshift_openstack_stack_state == 'present'
- - name: Create the Cinder volume for OpenShift Registry
- include_tasks: create-registry-volume.yml
- when:
- - groups.infra_hosts is defined
- - groups.infra_hosts.0 is defined
- - hostvars[groups.infra_hosts.0].openshift_hosted_registry_storage_volume_name is defined
- - hostvars[groups.infra_hosts.0].openshift_hosted_registry_storage_volume_size is defined
- - hostvars[groups.infra_hosts.0].openshift_hosted_registry_storage_openstack_volumeID is not defined
|