kolla-ansible/ansible/roles/solum/tasks/bootstrap_service.yml
Mauricio Lima edc408c08d Optimize reconfiguration for solum
Co-Authored-By: Francisco Edigleison Barbosa <barbosaedigleison@gmail.com>
Co-Authored-By: caoyuan <cao.yuan@99cloud.net>
Change-Id: I2c8003ac7ce42a621f6152d8d6684890d1645f62
Partially-implements: blueprint better-reconfigure
2017-01-25 19:20:10 +08:00

20 lines
538 B
YAML

---
- name: Running Solum bootstrap container
vars:
solum_api: "{{ solum_services['solum-api'] }}"
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ solum_api.image }}"
labels:
BOOTSTRAP:
name: "bootstrap_solum"
restart_policy: "never"
volumes: "{{ solum_api.volumes }}"
run_once: True
delegate_to: "{{ groups[solum_api.group][0] }}"