kolla-ansible/ansible/roles/senlin/tasks/bootstrap_service.yml

21 lines
592 B
YAML

---
- name: Running Senlin bootstrap container
vars:
senlin_api: "{{ senlin_services['senlin-api'] }}"
become: true
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ senlin_api.image }}"
labels:
BOOTSTRAP:
name: "bootstrap_senlin"
restart_policy: oneshot
volumes: "{{ senlin_api.volumes | reject('equalto', '') | list }}"
run_once: True
delegate_to: "{{ groups[senlin_api.group][0] }}"