kolla-ansible/ansible/roles/common/tasks/bootstrap.yml
Jeffrey Zhang 0fcee87549 map the host localtime to the container
Closes-Bug: #1577148
Change-Id: I636cefc63cf532434a41af3898b63dffa711e280
2016-05-03 09:27:51 +08:00

27 lines
756 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"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
when: kolla_logs_volume.changed