Jump to: navigation, search

Difference between revisions of "Designate/Development/Devstack"

(Created page with "==== Setting up Devstack environments for Designate ==== ===== Horizon ===== <code> mkdir devstack-repos; cd devstack-repos git clone https://github.com/openstack/designate...")
 
Line 3: Line 3:
 
===== Horizon =====
 
===== Horizon =====
  
<code>
+
<pre>
 
mkdir devstack-repos; cd devstack-repos  
 
mkdir devstack-repos; cd devstack-repos  
 
git clone https://github.com/openstack/designate.git  
 
git clone https://github.com/openstack/designate.git  
Line 24: Line 24:
 
vim local.conf # enable horizon + the needed nova etc  
 
vim local.conf # enable horizon + the needed nova etc  
 
./stack.sh  
 
./stack.sh  
 
+
</pre>
</code>
 

Revision as of 12:55, 10 December 2015

Setting up Devstack environments for Designate

Horizon
mkdir devstack-repos; cd devstack-repos 
git clone https://github.com/openstack/designate.git 
git clone https://github.com/openstack/designate-dashboard.git 
cd designate/contrib/vagrant 
sudo apt-get install vagrant  # ensure the version is >= 1.7.2
sudo apt-get install nfs-common nfs-kernel-server 
vagrant plugin install vagrant-libvirt 
vagrant plugin install vagrant-mutate 
vagrant plugin install vagrant-rekey-ssh 
vagrant box add trusty64 https://vagrantcloud.com/ubuntu/boxes/trusty64/versions/14.04/providers/virtualbox.box 
vagrant mutate trusty64  libvirt 
vagrant box list  # ensure only one trusty64 box is there 
# edit Vagrantfile, set ubuntu.vm.box = "trusty64", remove fedora20 
vagrant up 
vagrant global-status 
vagrant ssh ubuntu 
# from the VM: 
cd devstack 
vim local.conf # enable horizon + the needed nova etc 
./stack.sh