
Fixes LP Bug#874580 - keyerror 'location' when fetch errors Fixes LP Bug#817570 - Make new image cache a true extension Fixes LP Bug#872372 - Image cache has virtually no unit test coverage * Adds unit tests for the image cache (coverage goes from 26% to 100%) * Removes caching logic from the images controller and places it into a removeable transparent caching middleware * Adds a functional test case that verifies caching of an image and subsequent cache hits * Removes the image_cache_enabled configuration variable, since it's now enabled by simply including the cache in the application pipeline * Adds a singular glance-cache.conf to etc/ that replaces the multiple glance-pruner.conf, glance-reaper.conf and glance-prefetcher.conf files * Adds documentation on enabling and configuring the image cache TODO: Add documentation on the image cache utilities, like reaper, prefetcher, etc. Change-Id: I58845871deee26f81ffabe1750adc472ce5b3797
====== Glance ====== Glance is a project that defines services for discovering, registering, retrieving and storing virtual machine images. The discovery and registration responsibilities are handled by the `glance-registry` component while the retrieval and storage responsiblities are handled by the `glance-api` component. Quick Start ----------- If you'd like to run trunk, you can clone the git repo: git clone git@github.com:openstack/glance.git Install Glance by running:: python setup.py build sudo python setup.py install By default, `glance-registry` will use a SQLite database. If you'd like to use MySQL, or make other adjustments, you can modify the glance.cnf file (see documentation for more details). Now that Glance is installed, you can start the service. The easiest way to do that is by using the `glance-control` utility which runs both the `glance-api` and `glance-registry` services:: glance-control all start Once both services are running, you can now use the `glance-upload` tool to register new images in Glance. glance-upload --type=machine --kernel=1 --ramdisk=2 myimage.img "MyImage" With an image registered, you can now configure your IAAS provider to use Glance as its image service and begin spinning up instances from your newly registered images.
Description
Languages
Python
99.9%