d3e07342a5
Support setting Swift as Glance storage backend. Change-Id: Idddbf2ce741e0486d60e1de88c77a7f0332a5a2b
43 lines
1.2 KiB
Django/Jinja
43 lines
1.2 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"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/policy.json",
|
|
"dest": "/etc/glance/policy.json",
|
|
"owner": "glance",
|
|
"perm": "0600",
|
|
"optional": true
|
|
}{% 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 %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/lib/glance",
|
|
"owner": "glance:glance",
|
|
"recurse": true
|
|
},
|
|
{
|
|
"path": "/var/log/kolla/glance",
|
|
"owner": "glance:glance",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|