GithubHelp home page GithubHelp logo

mirakui / capistrano-bundle_rsync Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sonots/capistrano-bundle_rsync

0.0 1.0 0.0 129 KB

Deploy an application and bundled gems via rsync

License: MIT License

capistrano-bundle_rsync's Introduction

Capistrano::BundleRsync for Capistrano v3

Deploy an application and bundled gems via rsync

What is this for?

Capistrano::BundleRsync builds (bundle) gems only once on a deploy machine and transfers gems to your production machines via rsync, which saves you from building gems on each your production machine.

Also saves you from having to install Git and Build Tools on your production machine.

How it works

Capistrano::BundleRsync works as followings:

  1. Do git clone --mirror URL .local_repo/mirror on a deploy (local) machine.
  2. Extract a branch by git archive {branch} to .local_repo/releases/{datetime}
  3. Do bundle --without development test --path .local_repo/bundle on a deploy (local) machine.
  4. Deploy the release directory to remote machines by rsync.
  5. Deploy the bundle directory to remote machines by rsync.

Prerequisites

The deploy machine and remote machines must be on same architectures (i386, x86_64) because C exntension gems are built on the deploy machine and transfered by rsync.

Requiremens on remote machines:

  1. rbenv (rvm should work, but not verified)
  2. ruby

Requirements on a deploy machine:

  1. rbenv (rvm should work, but not verified)
  2. git
  3. Build Tools required to build C exntension gems (like gcc).
  4. A ruby to execute capistrano (you may use the ruby of 5.)
  5. The same ruby used at your remote machines
  6. A ssh key to login to your remote machines via ssh (Passowrd authentication is not supported)

Notice that it is not required to have Git and Build Tools on each remote machine.

Configuration

Set Capistrano variables with set name, value.

Name Default Description
repo_url . The path or URL to a Git repository to clone from.
branch master The Git branch to checkout.
ssh_options {} Configuration of ssh :user and :keys.
keep_releases 5 The number of releases to keep.
scm nil Must be bundle_rsync to use capistrano-bundle_rsync.
bundle_rsync_scm git SCM Strategy inside bundle_rsync. git uses git. local_git also uses git, but it enables to rsync the git repository located on local path directly without git clone. repo_url must be the local directory path to use local_git.
bundle_rsync_local_base_path $(pwd)/.local_repo The base directory to clone repository
bundle_rsync_local_mirror_path #{base_path}/mirror" Path where to mirror your repository
bundle_rsync_local_releases_path "#{base_path}/releases" Path of the directory to checkout your repository
bundle_rsync_local_release_path "#{releases_path}/#{datetime}" Path to checkout your repository (releases_path + release_name)
bundle_rsync_local_bundle_path "#{base_path}/bundle" Path where to bundle install gems.
bundle_rsync_ssh_options ssh_options Configuration of ssh for rsync. Default uses the value of ssh_options
bundle_rsync_keep_releases keep_releases The number of releases to keep on .local_repo
bundle_rsync_max_parallels number of hosts Number of concurrency. The default is the number of hosts to deploy.
bundle_rsync_rsync_bwlimit nil Configuration of rsync --bwlimit (KBPS) option. Not Avabile if bundle_rsync_rsync_options is specified.
bundle_rsync_rsync_options -az --delete Configuration of rsync options.
bundle_rsync_config_files nil Additional files to rsync. Specified files are copied into config directory.
bundle_rsync_shared_dirs nil Additional directories to rsync. Specified directories are copied into shared directory.
bundle_rsync_skip_bundle false (Secret option) Do not bundle and rsync bundle.

Task Orders

** Execute bundle_rsync:check
** Execute bundle_rsync:clone
** Execute bundle_rsync:update
** Execute bundle_rsync:create_release
** Execute bundle_rsync:bundler:install
** Execute bundle_rsync:rsync_release
** Execute bundle_rsync:rsync_shared
** Execute bundle_rsync:bundler:rsync
** Execute bundle_rsync:set_current_revision

Installation

Add this line to your application's Gemfile:

gem 'capistrano-bundle_rsync'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-bundle_rsync

Usage

Add followings to your Gemfile (capistrano-rvm should work, but not verified):

gem 'capistrano'
gem 'capistrano-rbenv'
gem 'capistrano-bundle_rsync'

Run bundle exec cap install.

$ bundle
$ bundle exec cap install

This creates the following files:

├── Capfile
├── config
│   ├── deploy
│   │   ├── production.rb
│   │   └── staging.rb
│   └── deploy.rb
└── lib
    └── capistrano
            └── tasks

To create different stages:

$ bundle exec cap install STAGES=localhost,sandbox,qa,production

Edit Capfile:

# Load DSL and Setup Up Stages
require 'capistrano/setup'

# Includes default deployment tasks
require 'capistrano/deploy'

# Includes tasks from other gems included in your Gemfile
require 'capistrano/rbenv'
require 'capistrano/bundle_rsync'

# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }

Edit config/deploy/localhost.rb as followings for example:

set :branch, ENV['BRANCH'] || 'master'
set :rbenv_type, :user
set :linked_dirs, %w(log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system tmp/run)
set :keep_releases, 5
set :scm, :bundle_rsync # Need this
set :bundle_rsync_max_parallels, ENV['PARA']
set :bundle_rsync_rsync_bwlimit, ENV['BWLIMIT'] # like 20000
set :bundle_rsync_config_files, ['~/config/database.yml']

set :application, 'sample'
set :repo_url, "[email protected]:sonots/rails-sample.git"
set :deploy_to, "/home/sonots/sample"
set :rbenv_ruby, "2.1.2" # Required on both deploy machine and remote machines
set :ssh_options, user: 'sonots', keys: [File.expand_path('~/.ssh/id_rsa'), File.expand_path('~/.ssh/id_dsa')]

role :app, ['127.0.0.1']

Deploy by following command:

$ bundle exec cap localhost deploy

Run a custom task before rsyncing

For example, if you want to precompile rails assets before rsyncing, you may add your own task before bundle_rsync:rsync_release.

task :precompile do
  run_locally do
    Bundler.with_clean_env do
      within BundleRsync::Config.release_path do
        execute :bundle, 'exec rake assets:precompile'
      end
    end
  end
end

before "bundle_rsync:rsync_release", "precompile"

FAQ

Q. What is difference with capistrano-rsync?

A. capistrano-bundle_rsync does bundle install at the deploy machine, not on each remote machine.

ToDo

  1. Support other SCMs than git.

ChangeLog

CHANGELOG.md

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Copyright

See LICENSE.txt for details.

Special Thanks

capistrano-bundle_rsync was originally created by @tohae. Thank you very much!

capistrano-bundle_rsync's People

Contributors

sonots avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.