f8880d27ad
This PS fixes the libvirt image, buy removing the ubuntu-cloud archive repo and pinning to a good version. Change-Id: I5097d8893b92d020f7a5a1cb5925dec0b01d4da2 Signed-off-by: Pete Birley <pete@port.direct>
49 lines
1.2 KiB
ReStructuredText
49 lines
1.2 KiB
ReStructuredText
Libvirt Container
|
|
=================
|
|
|
|
This container builds a small image with Libvirt for use with OpenStack-Helm.
|
|
|
|
Instructions
|
|
------------
|
|
|
|
OS Specific Host setup:
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Ubuntu:
|
|
^^^^^^^
|
|
|
|
From a freshly provisioned Ubuntu 16.04 LTS host run:
|
|
|
|
.. code:: bash
|
|
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y \
|
|
docker.io \
|
|
git
|
|
|
|
Build the Libvirt Image
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
A known good image is published to dockerhub on a fairly regular basis, but if
|
|
you wish to build your own image, from the root directory of the OpenStack-Helm
|
|
repo run:
|
|
|
|
.. code:: bash
|
|
|
|
LIBVIRT_VERSION=1.3.1-1ubuntu10.24
|
|
DISTRO=ubuntu
|
|
DISTRO_RELEASE=xenial
|
|
CEPH_RELEASE=luminous
|
|
|
|
sudo docker build \
|
|
--network=host \
|
|
--force-rm \
|
|
--pull \
|
|
--no-cache \
|
|
--file=./tools/images/libvirt/Dockerfile.${DISTRO}.xenial \
|
|
--build-arg LIBVIRT_VERSION="${LIBVIRT_VERSION}" \
|
|
--build-arg CEPH_RELEASE="${CEPH_RELEASE}" \
|
|
-t docker.io/openstackhelm/libvirt:${DISTRO}-${DISTRO_RELEASE}-${LIBVIRT_VERSION} \
|
|
tools/images/libvirt
|
|
sudo docker push docker.io/openstackhelm/libvirt:${DISTRO}-${DISTRO_RELEASE}-${LIBVIRT_VERSION}
|