96e7671db4
Change-Id: I7e2c7d70c5c2958c15a3e1d3ae4ece26dc68fe8a
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
# Settings for component glance
|
|
---
|
|
# Where we download this from...
|
|
get_from: "git://github.com/openstack/glance.git?branch=master"
|
|
|
|
host: "$(auto:ip)"
|
|
api_port: 9292
|
|
reg_port: 9191
|
|
protocol: http
|
|
verbose: True
|
|
|
|
# List of images to download and install into glance.
|
|
image_urls:
|
|
- "http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img"
|
|
|
|
patches:
|
|
# After check-out/download time patches
|
|
download: []
|
|
# At packaging time patches
|
|
package:
|
|
- "conf/patches/glance/"
|
|
|
|
# Test exclusions...
|
|
#
|
|
# TODO(harlowja) these should probably be bugs...
|
|
exclude_tests:
|
|
# These seem to require swift, not always installed...
|
|
- test_swift_store
|
|
|
|
# Interactions with keystone are via the following settings
|
|
paste_flavor: 'keystone'
|
|
|
|
# Images that are downloaded are stored here with
|
|
# metadata about them, so that re-examination before
|
|
# uploading does not have to occur
|
|
image_cache_dir: "/usr/share/anvil/glance/images"
|
|
|
|
# Used by install section in the specfile (conflicts with the client binary...)
|
|
remove_file: "/bin/rm -rf %{buildroot}/usr/bin/glance"
|
|
...
|