389e6fc70b
Provide support for kolla dev mode in vitrage. When 'kolla_dev_mode' or 'vitrage_dev_mode' variables are enabled, source code of vitrage project is cloned and bind mounted. Partially implements: blueprint mount-sources Co-Authored-By: zhulingjie <easyzlj@gmail.com> Change-Id: I095f2b33857abbdd0167ae52899407f2d86229d0
21 lines
600 B
YAML
21 lines
600 B
YAML
---
|
|
- name: Running Vitrage bootstrap container
|
|
vars:
|
|
vitrage_api: "{{ vitrage_services['vitrage-api'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ vitrage_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_vitrage"
|
|
restart_policy: "never"
|
|
volumes: "{{ vitrage_api.volumes | reject('equalto', '') | list }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[vitrage_api.group][0] }}"
|