Files
anvil/conf/components/glance.yaml
Joshua Harlow 1528b311d7 Convert nova clean into python code
1. Bring in the new dependency psutil to aid in killing and finding processes
2. Translate the actions being done by the nova cleanup script into pure python code
2012-11-27 13:20:38 -08:00

46 lines
1.2 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:
- "https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img"
# Needed for setting up your database
db:
type: "$(db:type)"
user: "$(db:user)"
host: "$(db:host)"
port: "$(db:port)"
# Package time patches
patches:
package:
- "conf/patches/glance/"
# Interactions with keystone are via the following settings
paste_flavor: 'keystone'
keystone:
auth_host: "$(keystone:auth_host)"
auth_port: "$(keystone:auth_port)"
auth_proto: "$(keystone:auth_proto)"
service_host: "$(keystone:service_host)"
service_port: "$(keystone:service_port)"
service_proto: "$(keystone:service_proto)"
# 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
remove_file: "/bin/rm -rf %{buildroot}/usr/bin/glance"
...