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:
Michal Nasiadka 2019-12-10 18:13:30 +01:00
parent 516cb3d95d
commit 6a8cfbb933
3 changed files with 10 additions and 2 deletions

View File

@ -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"

View File

@ -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

View File

@ -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.