Cloud Foundry

Cloud Foundry
Developer(s) VMware
Pivotal Software
Initial release 2011
Written in Ruby, Go
Type Cloud computing
License Apache License 2.0
Website cloudfoundry.org

Cloud Foundry is an open source cloud computing platform as a service (PaaS) originally developed by VMware and now owned by Pivotal Software - a joint venture by EMC, VMware and General Electric. Cloud Foundry was designed and developed by a small team from Google led by Derek Collison and was originally called project B29.[1][2][3]

Cloud Foundry is primarily written in Ruby and Go.

A different PaaS project also used the name Cloud Foundry, and was written in Java for Amazon EC2. It was founded by Chris Richardson in 2008 and acquired by SpringSource in 2009 [4] (the same month VMware acquired SpringSource). The current product is unrelated to the project under SpringSource, but the name was adopted when the original SpringSource project was ended.

Platform

Cloud Foundry comes in three flavors.

Other companies also offer platform as a service products using the Cloud Foundry platform.

Usage

Cloud Foundry supports the full lifecycle, from initial development, through all testing stages, to deployment. It is therefore well-suited to the continuous delivery strategy. Users have access to one or more spaces, which typically correspond to a lifecycle stages. For example, an application ready for QA testing might be pushed (deployed) to its project's QA space. Different users can be restricted to different spaces with different access permissions in each.

Developers require an additional tool, the Cloud Foundry cf Command Line Interface. It is written in Go. Installers exist for MS Windows, MacOS, and Linux.

The cf utility provides many options, but for deployment cf push is all that is required. It accepts arguments to specify the name of the application, where to load it from and the URL that should be used to access it. For example:

   cf push spring-music -i 2 -m 512M -n spring-music-v1 -p build/libs/spring-music.war

pushes the Java web application spring-music. Two instances are deployed (this is a Java web-application so by default this is two Tomcat instances), each with 512M of memory. The URL starts with spring-music-v1 and the web-archive (application) can be found at build/libs/spring-music.war. Every Cloud Foundry instance manages one or more domains. For example, all Pivotal Web Services (PWS) applications are accessed via the cfapps.io domain, so if this Spring Music application had been deployed to PWS, its URL would have been spring-music-v1.cfapps.io.

When an application is deployed to Cloud Foundry, an image is created for it and stored internally. The image is then deployed to a Warden container to run in. For multiple instances, multiple images are started on multiple containers. This is where BOSH comes in - Cloud Foundry's internal Controller uses BOSH to get the underlying infrastructure to spin up virtual machines to run the Warden containers on. When an application is deleted, all of its containers are destroyed and their resources are freed for other applications to use. If the application instance crashes, its container is killed and a new Warden container is started automatically. A container only ever runs one application ensuring isolation, security and resilience.

A load-balancing router sits at the front of Cloud Foundry to route incoming requests to the correct application - essentially to one of the containers where the application is running.

Services

Applications deployed to Cloud Foundry access external resources via Services. In a PaaS environment, all external dependencies such as databases, messaging systems, files systems and so on are Services. When an application is pushed to Cloud Foundry, the services it should use also can be specified. Depending on the application language, auto-configuration of services is possible - for example a Java application requiring a MySQL database picks up the MySQL service on Cloud Foundry if it is the only one defined in the current space.

Services have to be deployed to the platform first and then are available to any application using it. Another advantage of Pivotal CF is that many pre-defined services can be deployed into it directly using the Administration Console. Users of the Open Source Cloud Foundry must make services available by writing and running BOSH scripts.

PWS provides services thanks to a partnership arrangement with App Direct.

The following services are available to Pivotal CF and on PWS:

Software

The development of Cloud Foundry is controlled by a Foundation (similar to how Rackspace, NASA and others started the OpenStack Foundation).[13] By mid-2014, 33 companies had signed up to the Cloud Foundry Foundation.[14]

The source code is under an Apache License 2.0, and contributions are governed by the Cloud Foundry contributors' licenses for individuals and corporations. These licenses grant both copyright and patent access and protection to the Cloud Foundry Foundation, which is the same model that VMware followed with the Spring Framework from SpringSource.

Supported runtimes and frameworks include:[15][16]

Language Runtime Framework
Java Java 6, Java 7, Java 8 Spring Framework 3.x, 4.x
Ruby[17] Ruby 1.8, Ruby 1.9, Ruby 2.0, Ruby 2.1, Ruby 2.2, Ruby 1.9.3 via JRuby 1.7, Ruby 2.0.0 via JRuby 1.7, Ruby 2.2.2 via JRuby 9.0.0.0 Rails, Sinatra
Node.js V8 JavaScript Engine (from Google Chrome) Node.js
Scala Scala 2.x Play 2.x, Lift
Python [18] 2.7.10 buildpack default , 2.7.11, 3.3.5, 3.3.6, 3.4.3, 3.4.4, 3.5.0, 3.5.1 Python
PHP PHP 5.5, PHP 5.6, PHP 7.0 PHP
Go[19] Go 1.1.1, Go 1.1.2, Go 1.2.1, Go 1.2.2, Go 1.3.2, Go 1.3.3, Go 1.4.1, Go 1.4.2 Go

Note: Where multiple versions are given the default can be overridden by specifying the required version in a `runtime.txt` file.

Typically, Cloud Foundry is installed on-premises running over VMware's vSphere virtualization infrastructure, although deployment to OpenStack is an option using BOSH.[20]

It is also possible to run Cloud Foundry instances on VMware Fusion or Virtualbox using Vagrant and on AWS.[21]

See also

References

  1. "Cloud Foundry Foundation a Key Driver in PaaS Adoption".
  2. "Google’s Go Appears on Brazilian Cloud".
  3. "Cloud Foundry Evangelist Escapes VMware’s Gravity".
  4. "SpringSource Picks Up Cloud Foundry, Announces New Cloud Platform". Retrieved Oct 6, 2014.
  5. "Baidu Turns to Open Source to Power Part of Its Empire". Retrieved Nov 7, 2014.
  6. "A Platform for the Internet of Very Important Things". cloudfoundry.org. 2015. Retrieved October 27, 2015.
  7. "IBM Bluemix Docs". ng.bluemix.net. 2016. Retrieved January 6, 2016.
  8. "Cloud Platform as a Service (PaaS) - CenturyLink Cloud". centurylinkcloud.com. 2014. Retrieved July 24, 2014.
  9. "Stackato". activestate.com. 2014. Retrieved Dec 12, 2014.
  10. "HP Helion Development Platform". hp.com. 2015. Retrieved February 11, 2015.
  11. "anynines - 100% European PaaS". 2015. Retrieved 19 August 2015.
  12. "Swisscom". 2015. Retrieved 1 October 2015.
  13. "Cloud Foundry Foundation". Retrieved Nov 7, 2014.
  14. "Pivotal Doubles Membership of Cloud Foundry Foundation". Retrieved Nov 7, 2014.
  15. http://docs.cloudfoundry.org/buildpacks/
  16. https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks
  17. "Cloud Foundry ruby-buildpack Release Notes". Retrieved Aug 20, 2015.
  18. "Cloud Foundry python-buildpack Release Notes". Retrieved Mar 14, 2016.
  19. "Cloud Foundry go-buildpack Release Notes". Retrieved Aug 20, 2015.
  20. "Deploying Cloud Foundry on OpenStack". Retrieved November 7, 2014.
  21. http://docs.cloudfoundry.org/deploying/run-local.html

External links

Wikimedia Commons has media related to Cloud computing.
This article is issued from Wikipedia - version of the Friday, April 22, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.