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

21 lines
528 B
YAML

---
- name: Running rally bootstrap container
vars:
rally: "{{ rally_services['rally'] }}"
become: true
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ rally.image }}"
labels:
BOOTSTRAP:
name: "bootstrap_rally"
restart_policy: no
volumes: "{{ rally.volumes }}"
run_once: True
delegate_to: "{{ groups[rally.group][0] }}"