
This implements all the openstack pieces needed to make ceph work. DocImpact Change-Id: I1d24476a966602cf955e5ef872b0efb01319894a Partially-Implements: blueprint ceph-container Implements: blueprint kolla-live-migration
24 lines
676 B
Django/Jinja
24 lines
676 B
Django/Jinja
{
|
|
"command": "/usr/bin/nova-compute",
|
|
"config_files": [
|
|
{
|
|
"source": "/opt/kolla/config_files/nova.conf",
|
|
"dest": "/etc/nova/nova.conf",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
}{% if enable_ceph | bool %},
|
|
{
|
|
"source": "/opt/kolla/config_files/ceph.client.nova.keyring",
|
|
"dest": "/etc/ceph/ceph.client.nova.keyring",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "/opt/kolla/config_files/ceph.conf",
|
|
"dest": "/etc/ceph/ceph.conf",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
]
|
|
}
|