Merge "Checking certificate files for octavia"

This commit is contained in:
Jenkins 2017-02-14 16:29:50 +00:00 committed by Gerrit Code Review
commit dd79b8d1d3

View File

@ -25,3 +25,13 @@
when:
- container_facts['octavia_health_manager'] is not defined
- inventory_hostname in groups['octavia-health-manager']
- name: Checking certificate files exist for octavia
local_action: stat path="{{ node_custom_config }}/octavia/{{ item }}"
register: result
failed_when: not result.stat.exists
when: inventory_hostname in groups['octavia-worker']
with_items:
- cakey.pem
- ca_01.pem
- client.pem