External Ceph: template cinder backend config when cinder_backend_ceph
Currently External Ceph Cinder config requires the user to create cinder service custom configuration. This change alters the if/else statements to template out cinder backends configuration when cinder_backend_ceph is True. Change-Id: I143c3b44d2839e56d1dbf28484c0eaae0a753dc9
This commit is contained in:
parent
516cb3d95d
commit
6a8cfbb933
@ -181,7 +181,7 @@ openstack_cinder_auth: "{{ openstack_auth }}"
|
||||
####################
|
||||
cinder_backends:
|
||||
- name: "rbd-1"
|
||||
enabled: "{{ enable_ceph | bool and cinder_backend_ceph | bool }}"
|
||||
enabled: "{{ cinder_backend_ceph | bool }}"
|
||||
- name: "lvm-1"
|
||||
enabled: "{{ enable_cinder_backend_lvm | bool }}"
|
||||
- name: "nfs-1"
|
||||
|
@ -119,7 +119,7 @@ target_helper = {{ cinder_target_helper }}
|
||||
target_protocol = iscsi
|
||||
{% endif %}
|
||||
|
||||
{% if enable_ceph | bool and cinder_backend_ceph | bool %}
|
||||
{% if cinder_backend_ceph | bool %}
|
||||
[rbd-1]
|
||||
volume_driver = cinder.volume.drivers.rbd.RBDDriver
|
||||
volume_backend_name = rbd-1
|
||||
|
@ -0,0 +1,8 @@
|
||||
---
|
||||
upgrade:
|
||||
- |
|
||||
Default behavior for generating cinder.conf template has changed,
|
||||
now cinder.conf with rbd-1 section will be generated when external Ceph
|
||||
functionality is used i.e. cinder_backend_ceph is set to true.
|
||||
Previously it was only included when Kolla-Ansible internal
|
||||
Ceph deployment mechanism was used.
|
Loading…
Reference in New Issue
Block a user