CloudFoundry: Difference between revisions

From air
Jump to navigation Jump to search
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 7: Line 7:


Refcard : https://dzone.com/storage/assets/2652408-rc207-010d-cloudfoundry-update.pdf
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=
=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 23:


<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


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