为什么需要自动化部署?
因为我懒啊!!!
简介
mina是rails社区中流行的部署方案,允许你用Ruby DSL描述部署过程,mina生成一份脚本在目标服务器上执行。除了Ruby以外,也支持shell脚本,所以可定制性非常高。相比于老牌的Capstrino,mina一次性上传所有脚本到目标服务器执行,效率上会高一些。
核心步骤与原理
mina setup生成目标服务器上的文件夹结构
mina deploy进行部署
mina会自动从设置好的git仓库拉代码,运行bundle/migration等一系列流程,然后重启服务器
简单对比
手动部署
git pull
bundle install
rake db:migrate
rake assets:precompile
restart web server
自动部署
- mina deploy
一条命令就可以跑完整个发布流程。当然前提是你的deploy task写的天衣无缝,这需要对rails与linux有一定了解才可以做到。
举个栗子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
| require 'mina/bundler'
require 'mina/rails'
require 'mina/git'
require 'mina/rvm'
set :domain, '121.42.12.xx' #你的服务器地址或域名
set :deploy_to, '/var/www/api' #你打算把项目部署在服务器的哪个文件夹
set :repository, 'git@github.com:xxx.git' #git仓库
set :branch, 'master' #git分支
set :term_mode, nil #mina的小bug,设为nil可以解决
set :shared_paths, ['config/sidekiq.yml', 'config/database.yml', 'config/secrets.yml', 'log', 'shared'] #很关键,这几个文件夹会在多次部署间,通过符号链接的形式共享
set :user, 'moon' #ssh 用户名
task :environment do
invoke :'rvm:use[ruby-2.1.0-p0@default]' #ruby 版本
end
task :setup => :environment do #初始化task,创建文件夹结构
queue! %[mkdir -p "#{deploy_to}/#{shared_path}/log"]
queue! %[chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/log"]
queue! %[mkdir -p "#{deploy_to}/#{shared_path}/config"]
queue! %[chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/config"]
queue! %[mkdir -p "#{deploy_to}/#{shared_path}/shared"]
queue! %[chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/shared"]
queue! %[touch "#{deploy_to}/#{shared_path}/config/database.yml"]
queue! %[touch "#{deploy_to}/#{shared_path}/config/secrets.yml"]
queue %[echo "-----> Be sure to edit '#{deploy_to}/#{shared_path}/config/database.yml' and 'secrets.yml'."]
if repository
repo_host = repository.split(%r{@|://}).last.split(%r{:|\/}).first
repo_port = /:([0-9]+)/.match(repository) && /:([0-9]+)/.match(repository)[1] || '22'
queue %[
if ! ssh-keygen -H -F
ssh-keyscan -t rsa -p
fi
]
end
end
desc "Deploys the current version to the server."
task :deploy => :environment do
to :before_hook do
end
deploy do #部署流程
invoke :'git:clone'
invoke :'deploy:link_shared_paths'
invoke :'bundle:install'
invoke :'rails:db_migrate'
invoke :'deploy:cleanup'
invoke :start
to :launch do
queue "mkdir -p #{deploy_to}/#{current_path}/tmp/"
queue "touch #{deploy_to}/#{current_path}/tmp/restart.txt"
end
end
end
desc "start puma & sidekiq"
task :start => :environment do
queue "cd #{deploy_to+"/current"}"
queue "sidekiq -e production -d"
queue "puma -e production"
end
|