Merge "Fix volumes_from for the ansible playbooks"
This commit is contained in:
commit
cdfb9eb4b2
ansible/roles
@ -59,7 +59,8 @@
|
||||
name: bootstrap_cinder
|
||||
image: "{{ cinder_api_image_full }}"
|
||||
volumes: "{{ node_config_directory }}/cinder/:/opt/kolla/cinder/:ro"
|
||||
volumes_from: cinder_data
|
||||
volumes_from:
|
||||
- cinder_data
|
||||
env:
|
||||
KOLLA_BOOSTRAP:
|
||||
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
||||
|
@ -59,7 +59,8 @@
|
||||
name: bootstrap_glance
|
||||
image: "{{ glance_api_image_full }}"
|
||||
volumes: "{{ node_config_directory }}/glance-api/:/opt/kolla/glance-api/:ro"
|
||||
volumes_from: glance_data
|
||||
volumes_from:
|
||||
- glance_data
|
||||
env:
|
||||
KOLLA_BOOTSTRAP:
|
||||
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
||||
|
@ -14,7 +14,8 @@
|
||||
name: glance_registry
|
||||
image: "{{ glance_registry_image_full }}"
|
||||
volumes: "{{ node_config_directory }}/glance-registry/:/opt/kolla/glance-registry/:ro"
|
||||
volumes_from: glance_data
|
||||
volumes_from:
|
||||
- glance_data
|
||||
env:
|
||||
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
||||
when: inventory_hostname in groups['glance-registry']
|
||||
|
Loading…
x
Reference in New Issue
Block a user