-
Notifications
You must be signed in to change notification settings - Fork 2
Deploying own Openstack
The best way to deploy own Openstack is to use devstack.
Clone devstack:
#!bash
git clone https://github.com/openstack-dev/devstack.git --branch stable/juno
This will clone stable juno version.
Clone ceilometer:
#!bash
$git clone https://github.com/svashu/devstack-ceilometer
The downloaded devstack ceilometer package has localrc file which needs to be copied in to the devstack folder.
#!bash
$cp devstack-ceilometer/localrc devstack/localrc
Modify the localrc file to change the ip and passwords.
Note: If you have no idea about ip and passwords, remove the localrc file and install openstack. after a successful installation you will have all the information you need. Use ./unstack.sh to close the openstack instance, then start from step 3.*
Start Openstack
#!bash
$./stack.sh
As of now we have a stable openstack instance up and running.
In this step we will look into upgrading openstack CLI clients and installing if missing (for example neutron).
Go to the link in the 3rd reference to look out for various CLI clients and how to upgrade/install them.