Skip to content
Snippets Groups Projects
Commit dd79b8d1 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Checking certificate files for octavia"

parents 39ee9697 68d30d8f
No related branches found
No related tags found
No related merge requests found
......@@ -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
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