summaryrefslogtreecommitdiffstats
path: root/xci/infra/bifrost/README.md
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2018-03-20 17:28:50 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-03-20 17:28:50 +0000
commit346df57c53fde3795fbe675477cdb2c1a453b6f7 (patch)
tree9eb7a43cb3613e28f6a99c3f09c50bf6bc87839e /xci/infra/bifrost/README.md
parentc7fd1fe87d8ae59757cefc79fe73ef249dd7952c (diff)
parentdd0ac7518cc1dd5790314b72bd671d65435c1912 (diff)
Merge changes from topic 'allow-deployment-overrides'
* changes: xci: infra: bifrost: Avoid installing Ansible twice Add initial support for multiple infra deployers
Diffstat (limited to 'xci/infra/bifrost/README.md')
-rw-r--r--xci/infra/bifrost/README.md53
1 files changed, 53 insertions, 0 deletions
diff --git a/xci/infra/bifrost/README.md b/xci/infra/bifrost/README.md
new file mode 100644
index 00000000..60d07244
--- /dev/null
+++ b/xci/infra/bifrost/README.md
@@ -0,0 +1,53 @@
+=====================
+How to deploy bifrost
+=====================
+The scripts and playbooks defined on this repo, need to be combined with proper `Bifrost <http://git.openstack.org/cgit/openstack/bifrost>`_ code.
+
+Please follow that steps:
+
+1. Clone bifrost::
+
+ sudo git clone https://git.openstack.org/openstack/bifrost /opt/bifrost
+
+2. Clone releng::
+
+ sudo git clone https://gerrit.opnfv.org/gerrit/releng-xci /opt/releng-xci
+
+3. Clone infracloud::
+
+ sudo git clone https://git.openstack.org/openstack-infra/puppet-infracloud /opt/puppet-infracloud
+
+4. Combine releng scripts and playbooks with bifrost::
+
+ sudo cp -R /opt/releng-xci/bifrost/* /opt/bifrost/
+
+5. Copy /opt/puppet-infracloud/templates/bifrost/create_bridge.py.erb to /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt/create_bridge.py,
+ and replace tag <%= @bridge_name -%> with br_opnfv
+
+6. If you are on a RHEL/CentOS box, ensure that selinux is disabled
+
+7. Run destroy script if you need to cleanup previous environment::
+
+ cd /opt/bifrost
+ sudo ./scripts/destroy-env.sh
+
+8. Run deployment script to spin up 3 vms with bifrost: xcimaster, controller and compute::
+
+ cd /opt/bifrost
+ sudo ./scripts/test-bifrost-deployment.sh
+
+It is likely that the script will show some errors due to timeout. Please ignore the errors, and wait until the vms are completely bootstrapped. To verify it you can check with ironic::
+
+ cd /opt/bifrost
+ source env-vars
+ ironic node-list
+
+And wait until all the vms are in **active** Provisioning State.
+
+9. Check the IPs assigned to each of the VMS. You can check it by looking at inventory:
+
+ cat /tmp/baremetal.csv
+
+10. You can enter into the vms with devuser login/pass:
+
+ ssh devuser@192.168.122.2