Skip to content
Snippets Groups Projects
Commit 68d30d8f authored by liyingjun's avatar liyingjun Committed by Li Yingjun
Browse files

Checking certificate files for octavia

There is not precheck for certificate files for octavia, this patch
add it.

Change-Id: I0031a65d5c83c09ce0e16db9094f3dea12024495
Closes-bug: #1663575
parent 0a8e2a62
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