Difference between revisions of "OpenStack deployment via packstack from RDO"

From Christoph's Personal Wiki
Jump to: navigation, search
(New page: This article will cover the steps involved in getting OpenStack deployed using "<code>packstack</code>" from [https://www.rdoproject.org/ RDO]. NOTE: Article under construction. * Deplo...)
 
Line 11: Line 11:
  
 
  # yum update -y
 
  # yum update -y
  # yum install -y https://rdoproject.org/repos/rdo-release.rpm
+
  # yum install -y <nowiki>https://rdoproject.org/repos/rdo-release.rpm</nowiki>
 
  # yum install -y openstack-packstack
 
  # yum install -y openstack-packstack
  
 
  # packstack --allinone --provision-demo=n
 
  # packstack --allinone --provision-demo=n
  
 
+
==External links==
 
+
* [https://github.com/christophchamp/xtof-openstack-rdo-packstack xtof-openstack-rdo-packstack] on GitHub
 
+
  
 
[[Category:OpenStack]]
 
[[Category:OpenStack]]

Revision as of 00:14, 7 October 2015

This article will cover the steps involved in getting OpenStack deployed using "packstack" from RDO.

NOTE: Article under construction.
  • Deploy assumptions:
    • OS: CentOS 7.1 (64-bit; 7.1.1503 Core)
    • OpenStack release: "Kilo" (April 2015)

Single node

Note: Using neutron with a flat network driver.

# yum update -y
# yum install -y https://rdoproject.org/repos/rdo-release.rpm
# yum install -y openstack-packstack
# packstack --allinone --provision-demo=n

External links