Difference between revisions of "Vagrant"

From air
Jump to navigation Jump to search
Line 25: Line 25:
 
=[[CoreOS]] avec Vagrant=
 
=[[CoreOS]] avec Vagrant=
 
Installer Vagrant
 
Installer Vagrant
  +
  +
==Premiers pas==
   
 
<pre>
 
<pre>
Line 30: Line 32:
 
cd coreos-vagrant
 
cd coreos-vagrant
 
</pre>
 
</pre>
 
 
 
   
 
Modifier les fichiers user_data et config.rb
 
Modifier les fichiers user_data et config.rb
Line 45: Line 44:
   
 
vagrant ssh core-01
 
vagrant ssh core-01
  +
</pre>
   
  +
Une fois loggé
  +
<pre>
 
ifconfig
 
ifconfig
  +
  +
fleetctl list-machines
  +
  +
ping IPPUB-DE-core-02
 
</pre>
 
</pre>
   
Line 54: Line 60:
   
 
vagrant ssh 1a2b3c4d
 
vagrant ssh 1a2b3c4d
  +
<pre>
   
vagrant destroy 1a2b3c4d
 
   
  +
  +
<pre>
  +
vagrant halt core-02
  +
  +
vagrant status
  +
  +
vagrant global-status
  +
  +
vagrant up core-02
 
</pre>
 
</pre>
  +
  +
  +
==Clustering==
  +
  +
https://coreos.com/blog/coreos-clustering-with-vagrant/
  +
  +
=AWS=
  +
  +
<pre>
  +
vagrant plugin install vagrant-aws
  +
</pre>
  +
  +
La suite dans http://www.iheavy.com/2014/01/16/how-to-deploy-on-amazon-ec2-with-vagrant/

Revision as of 18:23, 1 June 2015

Vagrant provides easy to configure, reproducible, and portable work environments built on top of industry-standard technology and controlled by a single consistent workflow to help maximize the productivity and flexibility of you and your team.

To achieve its magic, Vagrant stands on the shoulders of giants. Machines are provisioned on top of VirtualBox, VMware, AWS, or any other provider. Then, industry-standard provisioning tools such as shell scripts, Chef, or Puppet, can be used to automatically install and configure software on the machine.

Installation

Suivre l'installation http://docs.vagrantup.com/v2/installation/

Premiers pas

Command Lines http://docs.vagrantup.com/v2/cli/index.html

vagrant --help
vagrant --help


CoreOS avec Vagrant

Installer Vagrant

Premiers pas

git clone https://github.com/coreos/coreos-vagrant.git
cd coreos-vagrant

Modifier les fichiers user_data et config.rb en suivant https://coreos.com/docs/running-coreos/platforms/vagrant/

vagrant up

vagrant list

vagrant ssh-config core-01

vagrant ssh core-01

Une fois loggé

ifconfig

fleetctl list-machines

ping IPPUB-DE-core-02

Depuis n'importe quel répertoire

vagrant global-status

vagrant ssh 1a2b3c4d
<pre>



<pre>
vagrant halt core-02

vagrant status

vagrant global-status

vagrant up core-02


Clustering

https://coreos.com/blog/coreos-clustering-with-vagrant/

AWS

vagrant plugin install vagrant-aws

La suite dans http://www.iheavy.com/2014/01/16/how-to-deploy-on-amazon-ec2-with-vagrant/