Installation/Vagrant puppet capistrano: Difference between revisions

From diaspora* project wiki
No edit summary
No edit summary
Line 17: Line 17:
With these two tasks you can automatically set up different environments, from development to production installation.
With these two tasks you can automatically set up different environments, from development to production installation.


= Deploy a development pod =
== Configure a fake FQDN in your system ==
 
If you are a developer and you want to try diaspora without messing up your computer by installing and configuring extra packages, you can set up a virtual machine that is executed by Vagrant and then automatically configured by Puppet.
Now that you have a fully configured virtual machine ready to host a diaspora application, will be very easy to deploy it with Capistrano.


== Configure a fake FQDN in your system ==
You will find a Vagrantfile, Puppet and Capistrano already configured to handle three kind of environment: ''development'', ''staging'' and ''production''. Before start using these tools is necessary to update your ''/etc/hosts'' file, adding to it the three FQDN for the local diaspora* installation.


Put this entry in your ''/etc/hosts''
Put these entries in your ''/etc/hosts''


<pre>192.168.11.2    development.diaspora.local</pre>
<pre>
192.168.11.2    development.diaspora.local
192.168.11.3    staging.diaspora.local
192.168.11.4    production.diaspora.local
</pre>


== Initialize project ==
== Initialize project ==
Line 35: Line 36:
git submodule update --init
git submodule update --init
</pre>
</pre>
= Deploy a development pod =
If you are a developer and you want to try diaspora without messing up your computer by installing and configuring extra packages, you can set up a virtual machine that is executed by Vagrant and then automatically configured by Puppet.
Now that you have a fully configured virtual machine ready to host a diaspora application, will be very easy to deploy it with Capistrano.


== Set up the virtual machine with Vagrant/Puppet ==
== Set up the virtual machine with Vagrant/Puppet ==


<pre>vagrant up</pre>
<pre>vagrant up development</pre>


Wait until the virtual machine is automatically setted up with puppet and is up and running.
Wait until the virtual machine is automatically setted up with puppet and is up and running.
Line 73: Line 79:
= Simulate a production deploy =
= Simulate a production deploy =


If you want to simulate a production installation of diaspora*, you can do that simply modifying the ''Vagrantfile'' and the ''puppet/manifests/site.pp''. In your ''Vagrantfile'', you have to specify the '''hostname''' of the machine to '''production.diaspora.local'''
Simply execute
 
== puppet/manifests/site.pp ==
 
<pre>
node 'production.diaspora.local' {
  class { 'diaspora':
    hostname          => $fqdn,
    environment        => 'production',
    app_directory      => '/home/diaspora',
    user              => 'diaspora',
    group              => 'diaspora',
    db_provider        => 'mysql',
    db_host            => 'localhost',
    db_port            => '3306',
    db_name            => 'diaspora_production',
    db_username        => 'diaspora',
    db_password        => 'diaspora',
    db_root_password  => 'diaspora_root'
  }
}
</pre>
 
And edits your ''/etc/hosts'' putting this entry:
 
<pre>192.168.11.2    production.diaspora.local</pre>
 
After that, execute vagrant:


<pre>vagrant up</pre>
<pre>vagrant up production</pre>


and proceed to deploy diaspora* with capistrano:
and proceed to deploy diaspora* with capistrano:

Revision as of 19:57, 12 January 2014

Work in progressWork in progress:This article is a work in progress, it may contain incomplete or inaccurate information. There may be additional information on the talk page.

Introduction

diaspora* -Replica Is a project that combines Vagrant, Puppet and Capistrano to automate the deploy of a POD. This project is under development, if you have some feedback or do you want to contribute to it, feel free to do it. At this time is necessary to do some test with real deploy on some cloud services (e.g. AWS, Digital Ocean, Rackspace, or other), even on non cloud service.

Some advice before you start to use these tools: You must to have installed on your computer Vagrant 1.2 or above, and Capistrano 3.0 or above (to install Capistrano follow instructions below.)

diaspora* -Replica

The aim of this project is to provide some tools that can help you to deploy a full diaspora* environment through the automation of two tasks:

With these two tasks you can automatically set up different environments, from development to production installation.

Configure a fake FQDN in your system

You will find a Vagrantfile, Puppet and Capistrano already configured to handle three kind of environment: development, staging and production. Before start using these tools is necessary to update your /etc/hosts file, adding to it the three FQDN for the local diaspora* installation.

Put these entries in your /etc/hosts

192.168.11.2    development.diaspora.local
192.168.11.3    staging.diaspora.local
192.168.11.4    production.diaspora.local

Initialize project

git clone https://github.com/joebew42/diaspora-replica.git
cd diaspora_replica
git submodule update --init

Deploy a development pod

If you are a developer and you want to try diaspora without messing up your computer by installing and configuring extra packages, you can set up a virtual machine that is executed by Vagrant and then automatically configured by Puppet. Now that you have a fully configured virtual machine ready to host a diaspora application, will be very easy to deploy it with Capistrano.

Set up the virtual machine with Vagrant/Puppet

vagrant up development

Wait until the virtual machine is automatically setted up with puppet and is up and running.

Install Capistrano with bundle (if you haven't)

If you have not installed Capistrano on your computer, you can easily run bundle to install it.

cd capistrano/ && bundle

Deploy diaspora* with Capistrano

When the virtual machine is up and running, then you can deploy diaspora* on it using Capistrano

cd capistrano
cap development deploy deploy:restart

Now, your diaspora* installation is up and running, you can go visit it at http://development.diaspora.local

Start, stop and restart

You can use Capistrano tasks to start, stop or restart diaspora*

cap development deploy:start
cap development deploy:stop
cap development deploy:restart

Simulate a production deploy

Simply execute

vagrant up production

and proceed to deploy diaspora* with capistrano:

cd capistrano
cap production deploy deploy:restart

Deploy a real diaspora* POD

If you want to use these tools to deploy a production environment (e.g. stage or production), you have to configure some properties inside Vagrantfile, puppet/manifests/site.pp, capistrano/config/deploy/production.rb and of course, SSL certs and private/public keys for the server.

Vagrantfile

You have to configure your Vagrantfile based on the virtual machine provider you are going to use (e.g. Amazon AWS, DigitalOcean, and other). Please see the Vagrant Provider Documentation for detailed instructions. If you are not going to use vagrant you can skip this section and apply puppet manually, or configure a puppet master/agent environment. See the Puppet documentation for more informations.

puppets/manifests/site.pp

node 'myproduction.domain.com' {
  class { 'diaspora':
    hostname           => $fqdn,
    environment        => 'production',
    app_directory      => '/home/diaspora',
    user               => 'diaspora',
    group              => 'diaspora',
    db_provider        => 'mysql',
    db_host            => 'localhost',
    db_port            => '3306',
    db_name            => 'diaspora_production',
    db_username        => 'diaspora',
    db_password        => 'diaspora',
    db_root_password   => 'diaspora_root'
  }
}

Of course, you have to change *myproduction.domain.com* with your real Fully Qualified Domain Name, and set up strong password.

Setup the SSL certificate for your server

You have to put the SSL key and certificate in puppet/modules/diaspora/files/certs/. The file names must contain the FQDN followed by .crt and .key. See the examples that already exists.

Setup the public key of the user

Put in puppet/modules/diaspora/files/diaspora.pub the public key of the user that will be granted to execute commands from Capistrano.

Apply Puppet configuration

Now that your Puppet configuration is complete, you have to execute it to your production server. If you use vagrant configured with one of the supported providers it can be done automatically. If you are not able to configure vagrant, you can apply puppet in other ways. But this topic will be not covered here. See the Puppet documentation for this.

capistrano/config/deploy/production.rb

Here you have to configure the FQDN, the git repository URL, the name of the branch and the user of the remote server.

Capistrano public key

In order to allow Capistrano to execute commands on the remote server you need to put in capistrano/ssh_keys the private and the public keys of the user. The public key should be the same of puppet/modules/diaspora/files/diaspora.pub.

Deploy diaspora* with Capistrano

Once you have successfully configured the server, you can deploy and start diaspora*

cd capistrano
cap production deploy deploy:restart

Using PostgreSQL Database

If you want to use PostgreSQL [1] instead of the default MySQL, you can configure it through puppet/manifests/site.pp:

node 'development.diaspora.local' {
  class { 'diaspora':
    hostname         => $fqdn,
    environment      => 'development',
    app_directory    => '/home/diaspora',
    user             => 'diaspora',
    group            => 'diaspora',
    db_provider      => 'postgres',
    db_host          => 'localhost',
    db_port          => '5432',
    db_name          => 'diaspora_development',
    db_username      => 'diaspora',
    db_password      => 'diaspora',
    db_root_password => 'diaspora_root'
  }
}

note the db_provider and db_port parameters.

And you have to uncomment the line:

# set :default_env, { DB: 'postgres' }

That is present in your capistrano/config/deploy/development.rb

[1] Puppet will install PostgreSQL 9.1

PostgreSQL for Staging/Production environments

Because of "--deployment" flag that is set up by default in capistrano bundler, it is necessary to fork diaspora* in a personal git repository and bundle it with PostgreSQL support:

$ DB=postgres bundle

and then add the generated Gemfile.lock under version control. Once you have done that, to enable PostgreSQL you have to uncomment this line:

# set :default_env, { DB: 'postgres' }

in capistrano/config/deploy/production.rb (or capistrano/config/deploy/staging.rb, depends on which environment you are going to deploy.) Of course, you have to specify your git repository, too.

Which Operating Systems are supported?

At the moment we support Ubuntu 12.04LTS Server and CentOS 6.4

Choosing the OS from Vagrantfile

By default the Vagrantfile will creates an Ubuntu box. If you want to switch for CentOS, you have to comment out the lines regarding Ubuntu and uncomment the lines about CentOS

How to contribute this project

This project is under development. There are a lot of things to do. At the moment the Puppet provides support and, has been tested only on Ubuntu 12.04LTS server. It could be useful if someone can test it over other version of Ubuntu, or better, can provide support for other distributions (e.g. CentOS). The Database section of the Puppet does not consider parameters like hostname and port at the moment. Furthermore there a lot of variables of diaspora.yml that are not covered (e.g. mail server configuration, unicorn workers, and more).