b90ecae39c
Closes-Bug: #1587244 Change-Id: I22ed3c57e4669c4372daf448da8385729c7cc8d1
33 lines
1.1 KiB
Django/Jinja
33 lines
1.1 KiB
Django/Jinja
{
|
|
"command": "cinder-backup --config-file /etc/cinder/cinder.conf",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/cinder.conf",
|
|
"dest": "/etc/cinder/cinder.conf",
|
|
"owner": "cinder",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.client.cinder-backup.keyring",
|
|
"dest": "/etc/ceph/ceph.client.cinder-backup.keyring",
|
|
"owner": "cinder",
|
|
"perm": "0600",
|
|
"optional": {{ (not enable_ceph | bool) | string | lower }}
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.client.cinder.keyring",
|
|
"dest": "/etc/ceph/ceph.client.cinder.keyring",
|
|
"owner": "cinder",
|
|
"perm": "0600",
|
|
"optional": {{ (not enable_ceph | bool) | string | lower }}
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.conf",
|
|
"dest": "/etc/ceph/ceph.conf",
|
|
"owner": "cinder",
|
|
"perm": "0600",
|
|
"optional": {{ (not enable_ceph | bool) | string | lower }}
|
|
}
|
|
]
|
|
}
|