33 lines
834 B
YAML
33 lines
834 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:
|
|
- "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)"
|
|
|
|
# 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)"
|
|
...
|