Difference between revisions of "CloudFoundry"

From air
Jump to navigation Jump to search
Line 9: Line 9:
   
 
=Premiers pas avec CloudFoundry sur pivotal.io=
 
=Premiers pas avec CloudFoundry sur pivotal.io=
  +
  +
Installer l'interpreteur de commonde CloudFloudry CLI https://github.com/cloudfoundry/cli#downloads
   
 
Créer un compte gratuit sur http://pivotal.io
 
Créer un compte gratuit sur http://pivotal.io
  +
   
 
Suivre le tutoriel http://pivotal.io/fr/platform/pcf-tutorials/getting-started-with-pivotal-cloud-foundry/install-the-cf-cli
 
Suivre le tutoriel http://pivotal.io/fr/platform/pcf-tutorials/getting-started-with-pivotal-cloud-foundry/install-the-cf-cli
Line 17: Line 20:
   
 
<pre>
 
<pre>
  +
cf help
 
git clone https://github.com/cloudfoundry-samples/cf-sample-app-spring.git
 
git clone https://github.com/cloudfoundry-samples/cf-sample-app-spring.git
 
cd cf-sample-app-spring
 
cd cf-sample-app-spring
 
more README.md
 
more README.md
 
more manifest.yml
 
more manifest.yml
  +
cf help login
 
cf login -a https://api.run.pivotal.io
 
cf login -a https://api.run.pivotal.io
 
cf push
 
cf push

Revision as of 16:09, 27 July 2016

https://www.cloudfoundry.org/

Solution PaaS pour le déploiement

  • d'applications Java, Go, Python, Node.js, Ruby, ...
  • d'applications sur des frameworks comme Spring, Play, Grails, Rail, Meteor, ...
  • des images Docker

Refcard : https://dzone.com/storage/assets/2652408-rc207-010d-cloudfoundry-update.pdf

Premiers pas avec CloudFoundry sur pivotal.io

Installer l'interpreteur de commonde CloudFloudry CLI https://github.com/cloudfoundry/cli#downloads

Créer un compte gratuit sur http://pivotal.io


Suivre le tutoriel http://pivotal.io/fr/platform/pcf-tutorials/getting-started-with-pivotal-cloud-foundry/install-the-cf-cli

Les commandes sont:

cf help
git clone https://github.com/cloudfoundry-samples/cf-sample-app-spring.git
cd cf-sample-app-spring
more README.md 
more manifest.yml 
cf help login
cf login -a https://api.run.pivotal.io
cf push