Initial XML files which add the Ironic project

Change-Id: Ib6526e6260cb20023194f7e7b81fd0d589aeccc9
This commit is contained in:
John L. Villalovos 2015-09-29 15:02:54 -07:00
parent 95f7b92d3b
commit 5f1abd4888
3 changed files with 73 additions and 0 deletions

46
README.rst Normal file
View File

@ -0,0 +1,46 @@
===============================
git-repo-manifests
===============================
git-repo-manifests
==================
git-repo-manifests is a collection of manifest files that are used with
Google's git-repo program
Installing the repo script
--------------------------
Instructions for installing the repo script are at:
https://source.android.com/source/downloading.html
In the section **'Installing Repo'**
Configure gitconfig
-------------------
In your ``~/.gitconfig`` you need to add a section like this. Please make sure
to put your actual Gerrit ID where it says ``YOUR_GERRIT_ID_HERE``::
[review "https://review.openstack.org/"]
username = YOUR_GERRIT_ID_HERE
Sample usage
------------
::
$ mkdir ironic-repo
$ cd ironic-repo
$ repo init -u https://git.openstack.org/openstack/git-repo-manifests -m ironic
$ repo sync --no-clone-bundle
$ cd ironic
$ repo start testing ironic
$ touch ironic/tests/TESTING
$ git add ironic/tests/TESTING
$ git commit -m 'Testing'
$ repo upload ironic

8
include/servers.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version='1.0' encoding='UTF-8'?>
<manifest>
<remote name="origin"
fetch="https://git.openstack.org/"
review="https://review.openstack.org/" />
</manifest>

19
ironic Normal file
View File

@ -0,0 +1,19 @@
<?xml version='1.0' encoding='UTF-8'?>
<manifest>
<default revision="master" remote="origin" sync-c="true"/>
<include name="include/servers.xml"/>
<!-- Ironic projects -->
<project groups="core" path="bifrost" name="openstack/bifrost"/>
<project groups="core" path="coreos-image-builder" name="openstack/coreos-image-builder"/>
<project groups="core" path="ironic" name="openstack/ironic"/>
<project groups="core" path="ironic-inspector" name="openstack/ironic-inspector"/>
<project groups="core" path="ironic-lib" name="openstack/ironic-lib"/>
<project groups="core" path="ironic-python-agent" name="openstack/ironic-python-agent"/>
<project groups="core" path="ironic-specs" name="openstack/ironic-specs"/>
<project groups="core" path="ironic-webclient" name="openstack/ironic-webclient"/>
<project groups="core" path="python-dracclient" name="openstack/python-dracclient"/>
<project groups="core" path="python-ironic-inspector-client" name="openstack/python-ironic-inspector-client"/>
<project groups="core" path="python-ironicclient" name="openstack/python-ironicclient"/>
</manifest>