smeeb
smeeb

Reputation: 29537

Is CloudFoundry compatible with Docker/CoreOS?

I am interested in installing OpenStack to a couple of physical we have lying around, and then, somehow, deploying CloudFoundry on top of of it, as the PaaS.

I am also interested in playing around with Docker and CoreOS, and see that an integration between OpenStack and CoreOS already exists.

My question: if I have OpenStack/Nova spinning up VMs running CoreOS, and hence be Docker/container-based, will this be compatible with CloudFoundry, or is CloudFoundry somehow incompatible with Docker containers?

Upvotes: 1

Views: 1032

Answers (1)

Mark O'Connor
Mark O'Connor

Reputation: 77971

Cloud Foundry is installed using a specialised tool called Bosh. It has support for Openstack and I think would require deployment using Ubuntu VMs (open to correction on this point). Cloud Foundry has not integrated Docker yet, that is coming in the next version, google "Cloud Foundry" and "Diego".

maybe I'm not fully understanding here, but I was under the impression that containers can't just stand on their own. They would require living inside a VM. So my thinking/hope was that I could use CloudFoundry to spin up VM instances, and inside those instances, deploy containers. Thoughts?

Containers are completely standalone, they are a form of lightweight virtualization. Cloud Foundry is a platform for deploying your application. It runs on virtual machines (or physical servers) and instances of your application are compiled and run on the CF hosts within containers. Currently the container tech used by CF is something called Warden. Diego is a new CF component coming in 2015 that will offer Docker support.

then what is the difference between CF Diego and Kubernetes, which also seems to be about deploying/distributing your container across pools of nodes? Do they serve different, similar or identical purposes? In other words, would there be a use case for having both CF Diego and Kubernetes managing your app deployments, if so, what?

Kubernetes is a Google sponsored project for orchestrating containers across multiple hosts. Cloud Foundry goes further because it also contains features for building and versioning applications that are deployed. It's worth noting that Redhat have a competing PAAS solution called Openshift. The next version (already available in github) has integrated Kubernetes and added in all the missing application build support, making it comparable to what Cloud Foundry offers. Both CF Diego and Openshift V3 are due for delivery sometime in 2015.

Update

  • I see from your other questions, you're familiar with Camel. You'd be interested in the fabric8 framework which has recently integrated Openshift V3. (Fabric is the upstream project for the JBoss Fuse product)

Upvotes: 4

Related Questions