52c4667b10
This bootstrap was non-idempotent. This patch follows the style first implemented with nova to make this idempotent. TrivialFix Change-Id: Id04e59c5274a7d8a5bffd3ce018f3bbb84839d75
26 lines
713 B
YAML
26 lines
713 B
YAML
---
|
|
- name: Creating log volume
|
|
kolla_docker:
|
|
action: "create_volume"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "kolla_logs"
|
|
register: kolla_logs_volume
|
|
|
|
- name: Starting heka bootstrap container
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ heka_image_full }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_heka"
|
|
restart_policy: "never"
|
|
volumes:
|
|
- "{{ node_config_directory }}/heka/:{{ container_config_directory }}/:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
when: kolla_logs_volume.changed
|