a71e90584a
Add a possibility to mount sources as volumes to containers, in "more than documentation" way. That will let us to use kolla as a replacement for devstack. Partially implements: blueprint mount-sources Change-Id: If241033d8c94c13f980fc3cc322f198187d64a21
21 lines
580 B
YAML
21 lines
580 B
YAML
---
|
|
- name: Running Solum bootstrap container
|
|
vars:
|
|
solum_api: "{{ solum_services['solum-api'] }}"
|
|
become: true
|
|
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|reject('equalto', '')|list }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[solum_api.group][0] }}"
|