cc9dae4dee
Glance cache is used to keep a locally cache image in the glance_api service. Is an usefull service when an image is commonly used to speed times between pulling from storage backend and send to nova. Change-Id: I8e684cc10e4fee1cb52c17a126e3b11f69576cf6
48 lines
1.5 KiB
Django/Jinja
48 lines
1.5 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.*",
|
|
"dest": "/etc/ceph/",
|
|
"owner": "glance",
|
|
"perm": "0700"
|
|
}{% 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
|
|
}
|
|
]
|
|
}
|