[DEFAULT] # Which backend store should Glance use by default is not specified # in a request to add a new image to Glance? Default: 'file' # Available choices are 'file', 'swift', and 's3' default_store = swift # ============ Swift Store Options ============================= # Address where the Swift authentication service lives swift_store_auth_address = <%= swift_store_auth_address %> # User to authenticate against the Swift authentication service swift_store_user = <%= swift_store_user %> # Auth key for the user authenticating against the # Swift authentication service swift_store_key = <%= swift_store_key %> # Container within the account that the account should use # for storing images in Swift swift_store_container = <%= swift_store_container %> # Do we create the container if it does not exist? swift_store_create_container_on_put = False [pipeline:glance-api] pipeline = versionnegotiation context apiv1app [pipeline:versions] pipeline = versionsapp [app:versionsapp] paste.app_factory = glance.api.versions:app_factory [app:apiv1app] paste.app_factory = glance.api.v1:app_factory [filter:versionnegotiation] paste.filter_factory = glance.api.middleware.version_negotiation:filter_factory [filter:imagecache] paste.filter_factory = glance.api.middleware.image_cache:filter_factory [filter:context] paste.filter_factory = glance.common.context:filter_factory