Cloud Foundry

Cloud Foundry®
Developer(s) VMware
Pivotal Software
Initial release 2011 (2011)
Repository github.com/cloudfoundry/
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 overseen by the Cloud Foundry Foundation. Cloud Foundry was designed and developed by a small team from VMWare led by Derek Collison and was originally called project B29.[1][2][3]

Cloud Foundry is primarily written in Ruby and Go.

At the time, a different PaaS project 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 Spring Source). The current product is unrelated to the project under Spring Source, but the name was adopted when the original SpringSource project was ended.

Platform

Cloud Foundry is open source software and hence available to anyone. Deploying Cloud Foundry involves interfacing with the underlying infrastructure using the Cloud Foundry BOSH (bosh outer shell) deployment scripting language, another open source tool from Pivotal. The Baidu website is implemented on OSS Cloud Foundry.[5]

A commercial version called Pivotal Cloud Foundry (PCF) is available from Pivotal. It provides extra tools for installation and administration not included in the OSS product – Pivotal Web Services (PWS) is an instance of Pivotal Cloud Foundry hosted on Amazon Web Services (AWS).

Another commercial distribution is called HPE Helion Stackato. Hewlett Packard Enterprise purchased the Stackato product from ActiveState in 2015[6] and merged it with the Helion Development Platform to create a multi-cloud Cloud Foundry based PaaS called Stackato 4.[7]

Other services using the Cloud Foundry platform include GE's Predix,[8] IBM Bluemix,[9] CenturyLink Cloud,[10] anynines,[11] and Swisscom.[12]

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 stage. 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 late 2016, more than 60 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, 1.1.2, 1.2.1, 1.2.2, 1.3.2, 1.3.3, 1.4.1, 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. Dai, Charlie (2014-12-10). "Cloud Foundry Foundation a Key Driver in PaaS Adoption". Forrester.
  2. "Google's Go Appears on Brazilian Cloud". Wired. Mar 2013.
  3. "Cloud Foundry Evangelist Escapes VMware's Gravity". Wired. Aug 2012.
  4. "SpringSource Picks Up Cloud Foundry, Announces New Cloud Platform". Tech crunch. 2009-07-19. Retrieved Oct 6, 2014.
  5. "Baidu Turns to Open Source to Power Part of Its Empire". Wired. Jul 2013. Retrieved Nov 7, 2014.
  6. "ActiveState's Stackato (Cloud Foundry & Docker Based PaaS) Acquired by HP". ActiveState. 2015-07-28. Retrieved 2016-10-12.
  7. "Introducing HPE Helion Stackato 4.0: The enterprise-ready, multi-cloud, cloud native app platform". Hewlett Packard Enterprise Community. 2016-06-08. Retrieved 2016-10-12.
  8. "A Platform for the Internet of Very Important Things". Cloud foundry. 2015. Retrieved October 27, 2015.
  9. "IBM Bluemix". Blue mix. IBM. 2016. Retrieved October 2, 2016.
  10. "Cloud Platform as a Service (PaaS)". Century Link Cloud. 2014. Retrieved July 24, 2014.
  11. "100% European PaaS". Anynines. 2015. Retrieved 19 August 2015.
  12. "Swiss com". 2015. Retrieved 1 October 2015.
  13. "Cloud Foundry Foundation". Info Q. Mar 2014. Retrieved Nov 7, 2014.
  14. "Pivotal Doubles Membership of Cloud Foundry Foundation" (press release). Pivotal IO. Retrieved Nov 7, 2014.
  15. Build packs (documentation), Cloud Foundry.
  16. Build packs (wiki), Git hub.
  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. "Run local", Deploying (documentation), Cloud Foundry.

External links

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