1f929336e3
Introduce user modifiable variables instead of fixed-names of Ceph keyring files for external Ceph functionality. Change-Id: I1a33b3f9d6eca5babf53b91187461e43aef865ce
54 lines
1.8 KiB
Django/Jinja
54 lines
1.8 KiB
Django/Jinja
{
|
|
"command": "glance-api",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/glance-api.conf",
|
|
"dest": "/etc/glance/glance-api.conf",
|
|
"owner": "glance",
|
|
"perm": "0600"
|
|
}{% if glance_policy_file is defined %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ glance_policy_file }}",
|
|
"dest": "/etc/glance/{{ glance_policy_file }}",
|
|
"owner": "glance",
|
|
"perm": "0600"
|
|
}{% endif %}{% if glance_backend_ceph | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ ceph_glance_keyring }}",
|
|
"dest": "/etc/ceph/{{ ceph_glance_keyring }}",
|
|
"owner": "glance",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.conf",
|
|
"dest": "/etc/ceph/ceph.conf",
|
|
"owner": "glance",
|
|
"perm": "0600"
|
|
}{% endif %}{% if glance_backend_swift | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/glance-swift.conf",
|
|
"dest": "/etc/glance/glance-swift.conf",
|
|
"owner": "glance",
|
|
"perm": "0600"
|
|
}{% endif %}{% if enable_glance_image_cache | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/glance-cache.conf",
|
|
"dest": "/etc/glance/glance-cache.conf",
|
|
"owner": "glance",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/lib/glance",
|
|
"owner": "glance:glance",
|
|
"recurse": true
|
|
},
|
|
{
|
|
"path": "/var/log/kolla/glance",
|
|
"owner": "glance:glance",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|