From 5d89bc40c1dbbd97198c67d5c3cb4b74552c835e Mon Sep 17 00:00:00 2001 From: Ekaterina Chernova Date: Fri, 24 Apr 2015 18:00:30 +0300 Subject: [PATCH] Update README file * Fix obsolete link to stackforge and update some other information Change-Id: Ic1ab8c383a27ec66c21e474d645ec8bdfda943ab --- CONTRIBUTING.rst | 4 +++- README.rst | 24 +++++++++++++----------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 339cc368..72d9ce7e 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -19,7 +19,9 @@ Project Hosting Details ======================= * Bug tracker - https://launchpad.net/murano + * https://launchpad.net/murano + + * https://launchpad.net/python-muranoclient * Mailing list (prefix subjects with ``[Murano]`` for faster responses) http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev diff --git a/README.rst b/README.rst index 5fce3c87..5c5ae69a 100644 --- a/README.rst +++ b/README.rst @@ -4,25 +4,27 @@ Murano Agent Murano Agent is a VM-side guest agent that accepts commands from Murano engine and executes them. -Image building using dib ------------------------- +Image building using DiskImage-Builder +-------------------------------------- -contrib/elements contains +Folder, named *contrib/elements* contains `diskimage-builder `_ elements to build an image which contains the Murano Agent required to use Murano. -An example Ubuntu based image containing the agent can be built and uploaded -to glance with the following commands: +Ubuntu based image containing the agent can be built and uploaded +to Glance with the following commands: :: - git clone https://git.openstack.org/openstack/diskimage-builder.git - git clone https://git.openstack.org/stackforge/murano-agent.git - export ELEMENTS_PATH=murano-agent/contrib/elements - diskimage-builder/bin/disk-image-create vm ubuntu \ + $ git clone https://git.openstack.org/openstack/diskimage-builder.git + $ git clone https://git.openstack.org/openstack/murano-agent.git + $ export ELEMENTS_PATH=murano-agent/contrib/elements + $ diskimage-builder/bin/disk-image-create vm ubuntu \ murano-agent -o ubuntu-murano-agent.qcow2 - glance image-create --disk-format qcow2 --container-format bare \ - --name ubuntu-murano < ubuntu-murano.qcow2 + $ glance image-create --disk-format qcow2 --container-format bare \ + --name ubuntu-murano --file ubuntu-murano.qcow2 \ + --property murano_image_info='{"title": "Ubuntu for Murano", \ + "type": "linux"}' Project Resources -----------------