b96ade3cf0
Tacker requires config for storing CSAR vnf packages. This patch adds it as well as relevant docs. Only one Tacker Conductor is deployed by default due to lack of a shared filesystem. Change-Id: Iad391f35105e79fa9319502256528990915df9b7 Co-authored-by: Radosław Piliszek <radoslaw.piliszek@gmail.com> Closes-Bug: #1845142
16 lines
458 B
YAML
16 lines
458 B
YAML
---
|
|
- name: Check tacker container
|
|
become: true
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
name: "{{ item.value.container_name }}"
|
|
image: "{{ item.value.image }}"
|
|
volumes: "{{ item.value.volumes|reject('equalto', '')|list }}"
|
|
dimensions: "{{ item.value.dimensions }}"
|
|
when:
|
|
- item.value.host_in_groups | bool
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ tacker_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|