├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── contrib └── DEPRECATED_glance-db-backend │ ├── __init__.py │ └── api.py ├── docs ├── glance_blueprint.md └── nova_blueprint.md ├── nova-driver ├── __init__.py ├── client.py ├── docker.filters ├── driver.py └── hostinfo.py ├── setup_on_devstack.sh ├── setup_on_rcbops-openstack.sh └── tests ├── __init__.py ├── mock_client.py ├── test_docker_client.py ├── test_driver.py └── test_hostinfo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Sam Alba 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/README.md -------------------------------------------------------------------------------- /contrib/DEPRECATED_glance-db-backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/DEPRECATED_glance-db-backend/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/contrib/DEPRECATED_glance-db-backend/api.py -------------------------------------------------------------------------------- /docs/glance_blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/docs/glance_blueprint.md -------------------------------------------------------------------------------- /docs/nova_blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/docs/nova_blueprint.md -------------------------------------------------------------------------------- /nova-driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/nova-driver/__init__.py -------------------------------------------------------------------------------- /nova-driver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/nova-driver/client.py -------------------------------------------------------------------------------- /nova-driver/docker.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/nova-driver/docker.filters -------------------------------------------------------------------------------- /nova-driver/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/nova-driver/driver.py -------------------------------------------------------------------------------- /nova-driver/hostinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/nova-driver/hostinfo.py -------------------------------------------------------------------------------- /setup_on_devstack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/setup_on_devstack.sh -------------------------------------------------------------------------------- /setup_on_rcbops-openstack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/setup_on_rcbops-openstack.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mock_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/tests/mock_client.py -------------------------------------------------------------------------------- /tests/test_docker_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/tests/test_docker_client.py -------------------------------------------------------------------------------- /tests/test_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/tests/test_driver.py -------------------------------------------------------------------------------- /tests/test_hostinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/openstack-docker/HEAD/tests/test_hostinfo.py --------------------------------------------------------------------------------