Skip to content
Snippets Groups Projects
Commit 2718005b authored by caoyuan's avatar caoyuan
Browse files

Add prechecks into solum roles

Change-Id: I7de471a5a513b7e6b4a0e697fa64f64fa0d519b2
Partially-implements: blueprint condition-pre-check
parent d8180c52
No related branches found
No related tags found
No related merge requests found
---
- name: Get container facts
kolla_container_facts:
name:
- solum_api
register: container_facts
- name: Checking free port for Solum Application Deployment
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ solum_application_deployment_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['solum_api'] is not defined
- inventory_hostname in groups['solum-api']
- name: Checking free port for Solum Image Builder
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ solum_image_builder_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['solum_api'] is not defined
- inventory_hostname in groups['solum-api']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment