CloudFoundry: Difference between revisions

From air
Jump to navigation Jump to search
(Created page with "https://www.cloudfoundry.org/ Solution PaaS pour le déploiement * d'applications Java, Go, Python, Node.js * d'applications sur des frameworks comme Spring, Rail, Meteor...")
 
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:


Solution PaaS pour le déploiement
Solution PaaS pour le déploiement
* d'applications Java, Go, Python, Node.js
* d'applications Java, Go, Python, Node.js, Ruby, ...
* d'applications sur des frameworks comme Spring, Rail, [[Meteor]]
* d'applications sur des frameworks comme Spring, Play, Grails, Rail, [[Meteor]], ...
* des images [[Docker]]
* des images [[Docker]]

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

=Solutions tieres=
* [http://bosh.io/docs/ BOSH] : utilitaire pour l'installation de CloudFoundry sur les principaux IaaS publics

=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:

<pre>
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

</pre>


=Installation de CloudFoundry sur AWS=
https://docs.cloudfoundry.org/deploying/aws/

=Livres=
* [[http://shop.oreilly.com/product/0636920042501.do Getting Started with Cloud Foundry]]
* https://github.com/cloudfoundry/docs-book-cloudfoundry

Latest revision as of 15:19, 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

Solutions tieres

  • BOSH : utilitaire pour l'installation de CloudFoundry sur les principaux IaaS publics

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


Installation de CloudFoundry sur AWS

https://docs.cloudfoundry.org/deploying/aws/

Livres