21 lines
591 B
YAML
Raw Normal View History

---
- name: Running Mistral bootstrap container
vars:
mistral_api: "{{ mistral_services['mistral-api'] }}"
become: true
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ mistral_api.image }}"
labels:
BOOTSTRAP:
name: "bootstrap_mistral"
restart_policy: no
volumes: "{{ mistral_api.volumes|reject('equalto', '')|list }}"
run_once: True
delegate_to: "{{ groups[mistral_api.group][0] }}"