abdelrahman khaled
abdelrahman khaled

Reputation: 143

what is the difference between ubuntu openstack and openstack kilo to build a private cloud?

I am trying to build a private cloud.

I was wondering what is the difference between

ubuntu openstack using maas to build the machines http://www.ubuntu.com/cloud/ubuntu-openstack

which have some heavy prerequisites.

And openstack kilo and it's previous versions https://www.openstack.org/software/kilo/

which have no explicit prerequisites.

Upvotes: 1

Views: 453

Answers (1)

Bruno B. Carvalho
Bruno B. Carvalho

Reputation: 586

Well, since OpenStack is an open-source project, many groups try to "sell" their own ready-to-use implementation. If you want to install Kilo, you will have to install all of the components separately. So it probably takes longer, the difference is you know what to install and you can have your custom version.

Following a more "ready-to-use" solution such as Ubuntu is probably easier and you also know that if you do follow blindy the instructions, it should work (but of course, the pre-requisites are to only work with Ubuntu technos ;) )

Other thing about MAAS, it's the same concept as cloud computing (provisionning machines when you need them) but with physical servers, so of course, you are going to need some heavy infrastructure. As for the classical Kilo implementation, 3 servers are enough (controller, network and compute node)

But in the end, installing the ubuntu solution is the same as installing Kilo on your own (Kilo is the the name of OpenStack's last version so the ubuntu solution most-likely uses Kilo too or the older one, Juno, not sure about this).

There you have it, I would recommend follwing the installation guide on how to install Kilo on an Ubuntu envrionment, you can find it here: http://docs.openstack.org/kilo/install-guide/install/apt/content/index.html

Upvotes: 1

Related Questions