7328ff55e3
Change-Id: I8be53fcc926f5b0ab425b31e74fefe2c247acbec
34 lines
933 B
YAML
34 lines
933 B
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"
|
|
|
|
# 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"
|
|
...
|