deploy_mate 0.18.4 → 0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +19 -0
- data/Gemfile.lock +1 -1
- data/README.md +33 -58
- data/deploy-mate.gemspec +2 -3
- data/lib/capistrano/configs/puma.rb.erb +12 -3
- data/lib/capistrano/helpers.rb +4 -2
- data/lib/capistrano/modules/shell.rb +0 -13
- data/lib/capistrano/tasks/bluepill.rake +1 -3
- data/lib/capistrano/tasks/fail2ban.rake +4 -8
- data/lib/capistrano/tasks/logrotate.rake +2 -4
- data/lib/capistrano/tasks/machine.rake +2 -0
- data/lib/capistrano/tasks/nginx.rake +4 -8
- data/lib/capistrano/tasks/puma.rake +1 -3
- data/lib/capistrano/tasks/unicorn.rake +1 -3
- data/lib/capistrano/tasks/upstart.rake +4 -8
- data/lib/deploy_mate/tasks.rake +27 -68
- data/lib/deploy_mate/templates/Capfile.erb +2 -2
- data/lib/deploy_mate/templates/deploy/stage.rb.erb +4 -4
- data/lib/deploy_mate/templates/deploy.rb.erb +11 -11
- data/lib/deploy_mate/templates/deploy_mate.yml.erb +79 -0
- data/lib/deploy_mate.rb +9 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbadfa76146d4f7da098a05d65a15b28897b5fdd
|
4
|
+
data.tar.gz: 65afaa22c3d1b9a2c456de81186e072bd0ff5269
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d21d1ba6ab3489312a6212a6af7d3ce95f156d5c86e4855ac922b207ade905722fb2fe07669d25a5b9980e932a8f434a28d0fb17cd1d7d355b36387cca43401c
|
7
|
+
data.tar.gz: 63330fdd41d6364f9068869ab1c2c360f93f9fc8bd827d5566928c3c191eee2e8af55f6b5d693a201740c4f65052d175d0eafac5994b076e5f309d42d7a17994
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
* **0.2 (2016-05-18)**: Configuration moved to YAML-file. SSH-Keys optional. Config-templates overwritable locally.
|
2
|
+
* **0.18.4 (2016-03-22)**: Added mandatory task to install `ssh_key`s
|
3
|
+
* **0.18.2 (2016-03-08)**: Added basic DDoS and flooding-proof via nginx `req_limit` and `fail2ban`
|
4
|
+
* **0.18.1 (2016-03-01)**: Added support for memcached
|
5
|
+
* **0.18 (2016-02-25)**: Added support for capistrano 3.4, Ask before overwriting existing config-files
|
6
|
+
* **2016-02-19**: Made selection of a deployed branch possible
|
7
|
+
* **2016-02-17**: Added support for puma as application server
|
8
|
+
* **2015-10-12**: Support additional linked-directories
|
9
|
+
* **2015-08-27**: Small fix for `nginx`-config regarding gzipping of svgs
|
10
|
+
* **2015-08-14**: Important small fix for `nginx`-config regarding ssl
|
11
|
+
* **2015-08-07**: Small fix for `rvm`-install
|
12
|
+
* **2015-08-06**: Support for optional `sidekiq`
|
13
|
+
* **2015-06-23**: Support for optional `elasticsearch`
|
14
|
+
* **2015-06-23**: Support for optional `whenever`
|
15
|
+
* **2015-06-23**: Support for optional `imagemagick`
|
16
|
+
* **2015-06-23**: Support creation of working `ubuntu` user. Error out if another user than `ubuntu` is used.
|
17
|
+
* **2015-06-22**: Support for choosing your Ruby-version when creating the `Capfile`. Suggestions come from `.ruby-version` and `Gemfile`.
|
18
|
+
* **2015-04-29**: Load custom rake tasks from lib/capistrano/tasks directory.
|
19
|
+
You need to run the generator ```rake deploy_mate:install``` again or add ```Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }``` to your Capfile.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
This little gem can be added to your ruby-projects in order to **set up a working ruby-server** and **deploy** to it.
|
6
6
|
|
7
7
|
The resulting server will work with this setup:
|
8
|
-
- NGINX
|
9
|
-
- Unicorn
|
10
|
-
- Bluepill
|
11
|
-
- RVM
|
12
|
-
- [Optional] ImageMagick
|
8
|
+
- [NGINX](http://nginx.org/) Webserver
|
9
|
+
- [Unicorn](http://unicorn.bogomips.org/) Rack App Server / [Puma](http://puma.io/) Rack App Server
|
10
|
+
- [Bluepill](https://github.com/bluepill-rb/bluepill) Process Monitoring
|
11
|
+
- [RVM](http://rvm.io) as user-install
|
12
|
+
- [Optional] [ImageMagick](http://www.imagemagick.org)
|
13
13
|
|
14
14
|
Other stuff taken care of:
|
15
15
|
- Logration
|
@@ -28,75 +28,50 @@ It uses the following Capistrano-roles to divide the installed components:
|
|
28
28
|
- **search**: [OPTIONAL] Machines with this role run ElasticSearch
|
29
29
|
- **cronjobs**: [OPTIONAL] For environments where `whenever` should manage/run cronjobs
|
30
30
|
|
31
|
-
## Changelog
|
32
|
-
* **0.18.4 (2016-03-22)**: Added mandatory task to install `ssh_key`s
|
33
|
-
* **0.18.2 (2016-03-08)**: Added basic DDoS and flooding-proof via nginx `req_limit` and `fail2ban`
|
34
|
-
* **0.18.1 (2016-03-01)**: Added support for memcached
|
35
|
-
* **0.18 (2016-02-25)**: Added support for capistrano 3.4, Ask before overwriting existing config-files
|
36
|
-
* **2016-02-19**: Made selection of a deployed branch possible
|
37
|
-
* **2016-02-17**: Added support for puma as application server
|
38
|
-
* **2015-10-12**: Support additional linked-directories
|
39
|
-
* **2015-08-27**: Small fix for `nginx`-config regarding gzipping of svgs
|
40
|
-
* **2015-08-14**: Important small fix for `nginx`-config regarding ssl
|
41
|
-
* **2015-08-07**: Small fix for `rvm`-install
|
42
|
-
* **2015-08-06**: Support for optional `sidekiq`
|
43
|
-
* **2015-06-23**: Support for optional `elasticsearch`
|
44
|
-
* **2015-06-23**: Support for optional `whenever`
|
45
|
-
* **2015-06-23**: Support for optional `imagemagick`
|
46
|
-
* **2015-06-23**: Support creation of working `ubuntu` user. Error out if another user than `ubuntu` is used.
|
47
|
-
* **2015-06-22**: Support for choosing your Ruby-version when creating the `Capfile`. Suggestions come from `.ruby-version` and `Gemfile`.
|
48
|
-
* **2015-04-29**: Load custom rake tasks from lib/capistrano/tasks directory.
|
49
|
-
You need to run the generator ```rake deploy_mate:install``` again or add ```Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }``` to your Capfile.
|
50
|
-
|
51
31
|
## Installation
|
52
|
-
Add
|
53
|
-
|
32
|
+
* Add the gem to your Gemfile (`gem 'deploy_mate'`) and run `bundle install`.
|
33
|
+
* Spawn yourself a basic **Ubuntu 14** at the provider of your choice.
|
34
|
+
* Create a working SSH-configuration for that server and try it out using `ssh <your-server-name>`.
|
35
|
+
|
36
|
+
## Generate the Capistrano files
|
37
|
+
* Generate the configuration file: `bundle exec rake deploy_mate:default_config`
|
38
|
+
* Edit the configuration file: `open config/deploy_mate.yml`
|
39
|
+
* Generate the Capistrano files out of the config: `bundle exec rake deploy_mate:install`
|
40
|
+
|
41
|
+
**NOTE** for non-rails applications:
|
42
|
+
Since rails supports auto-loading rake tasks, any non-rails application must load the deploy mate rake tasks manually.
|
43
|
+
At **the end** of the your project's `Rakefile`:
|
54
44
|
```
|
55
|
-
|
45
|
+
load 'deploy_mate/tasks.rake'
|
56
46
|
```
|
57
|
-
|
47
|
+
When done: **Remove** `load 'deploy_mate/tasks.rake'` from your `Rakefile`. It is not needed anymore and will otherwise only cause problems.
|
58
48
|
|
59
|
-
|
49
|
+
## Using deploy mate
|
60
50
|
|
61
|
-
|
62
|
-
```
|
63
|
-
load 'deploy_mate/tasks.rake'
|
51
|
+
### Initialize needed server packages
|
64
52
|
```
|
65
|
-
|
53
|
+
bundle exec cap <your-stage> machine:init
|
66
54
|
```
|
67
|
-
rake deploy_mate:install
|
68
|
-
````
|
69
|
-
|
70
|
-
Follow the instructions.
|
71
|
-
|
72
|
-
This will create the following files for you:
|
73
55
|
|
56
|
+
### Copy needed templates
|
74
57
|
```
|
75
|
-
|
76
|
-
config/deploy.rb
|
77
|
-
config/deploy/<your-stage>.rb
|
58
|
+
bundle exec cap <your-stage> machine:setup
|
78
59
|
```
|
79
|
-
When done: **Remove** `load 'deploy_mate/tasks.rake'` from your `Rakefile`. It is not needed anymore and will otherwise only cause problems.
|
80
60
|
|
81
|
-
|
82
|
-
Should you need to update your `deploy_mate`-version (e.g. because somebody fixed a bug in the gem), run:
|
61
|
+
### Deploy the application
|
83
62
|
```
|
84
|
-
bundle
|
63
|
+
bundle exec cap <your-stage> deploy
|
85
64
|
```
|
86
|
-
This will bump you up to the latest repo-version.
|
87
|
-
|
88
|
-
## Setting up a server
|
89
|
-
1. Spawn yourself a basic **Ubuntu 14** at the provider of your choice.
|
90
|
-
2. Create a working SSH-configuration for that server and try it our using `ssh <your-server-name>`
|
91
|
-
3. Run `cap <your-stage> machine:init` to install the needed packages.
|
92
|
-
4. Run `cap <your-stage> machine:setup` the setup all needed configuration-files on the server
|
93
|
-
5. Run `cap <your-stage> deploy branch=optional_branch` and be done.
|
94
65
|
|
95
|
-
|
96
|
-
If you need to redeploy SSH Keys to your server (e.g. somebody leaves your team),
|
66
|
+
### Reinstalling SSH-Keys
|
67
|
+
If you need to redeploy SSH Keys to your server (e.g. somebody leaves your team),you can
|
68
|
+
always come back to your configuration file at `config/deploy_mate.yml`, change the
|
69
|
+
values and generate the Capistrano files again with `bundle exec rake deploy_mate:install`.
|
70
|
+
To setup just the ssh keys run:
|
97
71
|
|
98
72
|
```
|
99
73
|
bundle exec cap <your-stage> machine:install:ssh_keys
|
100
74
|
```
|
101
75
|
|
102
|
-
|
76
|
+
### Overwriting Templates
|
77
|
+
You can overwrite the templates used to setup the server. Just place the desired template in your project under `lib/capistrano/configs` and rerun the setup task. All existing templates can be found in this repo under [lib/capistrano/configs](https://github.com/hanseventures/deploy-mate/tree/master/lib/capistrano/configs).
|
data/deploy-mate.gemspec
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "deploy_mate"
|
3
|
-
s.version = "0.
|
3
|
+
s.version = "0.20"
|
4
4
|
|
5
5
|
s.authors = ["Tim Adler", "Marcus Geißler", "Johannes Strampe"]
|
6
|
-
s.date = %q{2016-
|
6
|
+
s.date = %q{2016-05-18}
|
7
7
|
s.description = %q{This is how we deploy around here.}
|
8
8
|
s.summary = s.description
|
9
9
|
s.email = %q{development (at) hanseventures (dot) com}
|
@@ -19,5 +19,4 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.add_dependency 'capistrano-bundler'
|
20
20
|
s.add_dependency 'capistrano-rails'
|
21
21
|
s.add_dependency 'rake'
|
22
|
-
|
23
22
|
end
|
@@ -1,6 +1,15 @@
|
|
1
1
|
# puma configuration
|
2
2
|
|
3
3
|
shared_path = "<%= shared_path %>"
|
4
|
+
environment_name = "<%= fetch(:environment) %>"
|
5
|
+
|
6
|
+
begin
|
7
|
+
require 'dotenv'
|
8
|
+
dotenv_path = '<%= fetch(:dotenv_path, shared_path.join(".env.#{fetch(:environment)}")) %>'
|
9
|
+
Dotenv.load(dotenv_path)
|
10
|
+
rescue LoadError
|
11
|
+
puts "Dotenv not found, skipping load of env vars..."
|
12
|
+
end
|
4
13
|
|
5
14
|
# Puma can serve each request in a thread from an internal thread pool.
|
6
15
|
# The `threads` method setting takes two numbers a minimum and maximum.
|
@@ -8,12 +17,12 @@ shared_path = "<%= shared_path %>"
|
|
8
17
|
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
9
18
|
# and maximum, this matches the default thread size of Active Record.
|
10
19
|
#
|
11
|
-
threads_count = <%= fetch(:puma_threads) %>
|
20
|
+
threads_count = ENV.fetch("PUMA_THREADS", <%= fetch(:puma_threads) %>)
|
12
21
|
threads threads_count, threads_count
|
13
22
|
|
14
23
|
# Specifies the `environment` that Puma will run in.
|
15
24
|
#
|
16
|
-
environment
|
25
|
+
environment environment_name
|
17
26
|
|
18
27
|
# Specifies the number of `workers` to boot in clustered mode.
|
19
28
|
# Workers are forked webserver processes. If using threads and workers together
|
@@ -21,7 +30,7 @@ environment "<%= fetch(:environment) %>"
|
|
21
30
|
# Workers do not work on JRuby or Windows (both of which do not support
|
22
31
|
# processes).
|
23
32
|
#
|
24
|
-
workers <%= fetch(:puma_workers) %>
|
33
|
+
workers ENV.fetch("PUMA_WORKERS", <%= fetch(:puma_workers) %>)
|
25
34
|
|
26
35
|
# Use the `preload_app!` method when specifying a `workers` number.
|
27
36
|
# This directive tells Puma to first boot the application and load code
|
data/lib/capistrano/helpers.rb
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
# This file is loaded before the tasks
|
3
3
|
|
4
4
|
def template(from, to)
|
5
|
-
|
5
|
+
path = File.expand_path("lib/capistrano/configs/#{from}", ENV['PWD'])
|
6
|
+
path = File.expand_path("../configs/#{from}", __FILE__) unless File.exists?(path)
|
7
|
+
erb = File.read(path)
|
6
8
|
compiled = ERB.new(erb).result(binding)
|
7
9
|
io = StringIO.new(compiled)
|
8
10
|
upload! io, to
|
@@ -17,4 +19,4 @@ def execute_script(name, params = "")
|
|
17
19
|
execute "chmod 755 #{name}"
|
18
20
|
execute "./#{name} #{params}"
|
19
21
|
execute "rm #{name}"
|
20
|
-
end
|
22
|
+
end
|
@@ -4,17 +4,4 @@ module Shell
|
|
4
4
|
test("[ -f #{file} ]")
|
5
5
|
end
|
6
6
|
|
7
|
-
def overwrite_file?(file)
|
8
|
-
ask(:answer, "File #{file} already exists. Overwrite it? (y/N)")
|
9
|
-
fetch(:answer).downcase == "y"
|
10
|
-
end
|
11
|
-
|
12
|
-
def file_exists_and_overwrite?(file)
|
13
|
-
file_exists?(file) && overwrite_file?(file)
|
14
|
-
end
|
15
|
-
|
16
|
-
def file_new_or_overwrite?(file)
|
17
|
-
!file_exists?(file) || overwrite_file?(file)
|
18
|
-
end
|
19
|
-
|
20
7
|
end
|
@@ -5,9 +5,7 @@ namespace :bluepill do
|
|
5
5
|
task :setup do
|
6
6
|
on roles(:app) do
|
7
7
|
execute "mkdir -p #{shared_path}/config"
|
8
|
-
|
9
|
-
template "application.pill.erb", "#{shared_path}/config/#{fetch(:application)}.pill"
|
10
|
-
end
|
8
|
+
template "application.pill.erb", "#{shared_path}/config/#{fetch(:application)}.pill"
|
11
9
|
end
|
12
10
|
end
|
13
11
|
|
@@ -4,14 +4,10 @@ namespace :fail2ban do
|
|
4
4
|
desc "Installs the fail2ban configs"
|
5
5
|
task :setup do
|
6
6
|
on roles(:web) do
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
if file_new_or_overwrite?("/etc/fail2ban/filter.d/nginx-req-limit.conf")
|
12
|
-
template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_req_filter"
|
13
|
-
sudo "mv /tmp/fail2ban_req_filter /etc/fail2ban/filter.d/nginx-req-limit.conf"
|
14
|
-
end
|
7
|
+
template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_jail"
|
8
|
+
sudo "mv /tmp/fail2ban_jail /etc/fail2ban/jail.conf"
|
9
|
+
template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_req_filter"
|
10
|
+
sudo "mv /tmp/fail2ban_req_filter /etc/fail2ban/filter.d/nginx-req-limit.conf"
|
15
11
|
end
|
16
12
|
end
|
17
13
|
|
@@ -4,10 +4,8 @@ namespace :logrotate do
|
|
4
4
|
desc "Install the logrotate config"
|
5
5
|
task :setup do
|
6
6
|
on roles(:app) do
|
7
|
-
|
8
|
-
|
9
|
-
sudo "mv /tmp/logrotate-#{fetch(:application)} /etc/logrotate.d/#{fetch(:application)}"
|
10
|
-
end
|
7
|
+
template "logrotate.erb", "/tmp/logrotate-#{fetch(:application)}"
|
8
|
+
sudo "mv /tmp/logrotate-#{fetch(:application)} /etc/logrotate.d/#{fetch(:application)}"
|
11
9
|
sudo "chown root:root /etc/logrotate.d/#{fetch(:application)}"
|
12
10
|
end
|
13
11
|
end
|
@@ -6,15 +6,11 @@ namespace :nginx do
|
|
6
6
|
desc "Installs the nginx configs"
|
7
7
|
task :setup do
|
8
8
|
on roles(:web) do
|
9
|
-
|
10
|
-
|
11
|
-
sudo "mv /tmp/nginx_conf /etc/nginx/nginx.conf"
|
12
|
-
end
|
9
|
+
template "nginx_base.conf.erb", "/tmp/nginx_conf"
|
10
|
+
sudo "mv /tmp/nginx_conf /etc/nginx/nginx.conf"
|
13
11
|
|
14
|
-
|
15
|
-
|
16
|
-
sudo "mv /tmp/#{fetch(:application)}_conf /etc/nginx/sites-available/#{fetch(:application)}.conf"
|
17
|
-
end
|
12
|
+
template "nginx_app.conf.erb", "/tmp/#{fetch(:application)}_conf"
|
13
|
+
sudo "mv /tmp/#{fetch(:application)}_conf /etc/nginx/sites-available/#{fetch(:application)}.conf"
|
18
14
|
|
19
15
|
if file_exists? "/etc/nginx/sites-enabled/default"
|
20
16
|
sudo "rm /etc/nginx/sites-enabled/default"
|
@@ -11,9 +11,7 @@ namespace :puma do
|
|
11
11
|
task :setup do
|
12
12
|
on roles(:app) do
|
13
13
|
execute "mkdir -p #{shared_path}/config"
|
14
|
-
|
15
|
-
template "puma.rb.erb", "#{shared_path}/config/puma.rb"
|
16
|
-
end
|
14
|
+
template "puma.rb.erb", "#{shared_path}/config/puma.rb"
|
17
15
|
end
|
18
16
|
end
|
19
17
|
|
@@ -10,9 +10,7 @@ namespace :unicorn do
|
|
10
10
|
task :setup do
|
11
11
|
on roles(:app) do
|
12
12
|
execute "mkdir -p #{shared_path}/config"
|
13
|
-
|
14
|
-
template "unicorn.rb.erb", "#{shared_path}/config/unicorn.rb"
|
15
|
-
end
|
13
|
+
template "unicorn.rb.erb", "#{shared_path}/config/unicorn.rb"
|
16
14
|
end
|
17
15
|
end
|
18
16
|
|
@@ -6,20 +6,16 @@ namespace :upstart do
|
|
6
6
|
desc "Install the upstart config"
|
7
7
|
task :setup do
|
8
8
|
on roles(:app) do
|
9
|
-
|
10
|
-
|
11
|
-
sudo "mv /tmp/bluepill.conf /etc/init/"
|
12
|
-
end
|
9
|
+
template "upstart.conf.erb", "/tmp/bluepill.conf"
|
10
|
+
sudo "mv /tmp/bluepill.conf /etc/init/"
|
13
11
|
sudo "chown root:root /etc/init/bluepill.conf"
|
14
12
|
end
|
15
13
|
end
|
16
14
|
|
17
15
|
task :start do
|
18
16
|
on roles(:app) do
|
19
|
-
|
20
|
-
|
21
|
-
sudo "mv /tmp/bluepill.conf /etc/init/"
|
22
|
-
end
|
17
|
+
template "upstart.conf.erb", "/tmp/bluepill.conf"
|
18
|
+
sudo "mv /tmp/bluepill.conf /etc/init/"
|
23
19
|
sudo "chown root:root /etc/init/bluepill.conf"
|
24
20
|
end
|
25
21
|
end
|
data/lib/deploy_mate/tasks.rake
CHANGED
@@ -1,67 +1,48 @@
|
|
1
|
-
require 'readline'
|
2
|
-
|
3
1
|
namespace :deploy_mate do
|
2
|
+
desc 'copy the default configuration file to config/deploy_mate.yml'
|
3
|
+
task :default_config do
|
4
|
+
@app_name = guess_app_name
|
5
|
+
@ruby_version = guess_ruby_version
|
6
|
+
@rails = to_h(rails?)
|
7
|
+
@imagemagick = to_h(imagemagick?)
|
8
|
+
@sidekiq = to_h(sidekiq?)
|
9
|
+
@memcached = to_h(memcached?)
|
10
|
+
|
11
|
+
puts "Creating default template:\n\n"
|
12
|
+
puts "\t" + config_template('deploy_mate.yml.erb', 'config/deploy_mate.yml')
|
13
|
+
puts "\nConfigure it and then run:\n\n\tbundle exec rake deploy_mate:install\n\n"
|
14
|
+
end
|
4
15
|
|
5
|
-
|
6
|
-
|
7
|
-
puts "
|
8
|
-
puts "We will set up your deployment now."
|
9
|
-
|
10
|
-
@app_name = ask("[01/16] App-Name (for nginx, servers, etc.)", guess_app_name)
|
11
|
-
@stage_name = ask("[02/16] Give the first stage a name", "prestage")
|
12
|
-
@ssh_name = ask("[03/16] SSH-Hostname for the server", "#{@app_name}-#{@stage_name}")
|
13
|
-
@ssh_file_names = ask("[04/16] SSH Keys to be installed", "~/.ssh/*.pub")
|
14
|
-
@ruby_version = ask("[05/16] Ruby-Version (the RVM-way, e.g. ruby-2.2.0)", guess_ruby_version)
|
15
|
-
@db_engine = ask_until("[06/16] What db are you using?", %w( postgresql mysql ), "mysql")
|
16
|
-
@app_server = ask_until("[07/16] What app server do you want to use?", %w( unicorn puma ), "unicorn")
|
17
|
-
@repo_url = ask("[08/16] Url-Location of git-repo", "git@github.com:hanseventures/#{@app_name}.git")
|
18
|
-
@is_rails = yes_or_no?("[09/16] Is this a RAILS project ?", (rails_present? ? "yes" : "no"))
|
19
|
-
@needs_imagemagick = yes_or_no?("[10/16] Does this project need ImageMagick ?", (needs_imagemagick? ? "yes" : "no"))
|
20
|
-
@uses_sidekiq = yes_or_no?("[11/16] Does this project use Sidekiq ?", (uses_sidekiq? ? "yes" : "no"))
|
21
|
-
@branch_name = ask("[12/16] Branch to deploy '#{@stage_name}' from", "dev")
|
22
|
-
@host_name = ask("[13/16] Web-URL for '#{@stage_name}'", "#{@stage_name}.#{@app_name}")
|
23
|
-
@environment = ask("[14/16] #{@stage_name}'s environment (RACK_ENV/RAILS_ENV)", "#{@stage_name}")
|
24
|
-
@needs_elasticsearch = yes_or_no?("[15/16] Do you need ElasticSearch on this machine ?", "no")
|
25
|
-
@needs_memcached = yes_or_no?("[16/16] Do you need Memcached on this machine ?", (needs_memcached? ? "yes" : "no"))
|
26
|
-
|
27
|
-
puts "Aye!"
|
28
|
-
puts "Worrrrking..."
|
29
|
-
|
30
|
-
config_template("Capfile.erb", "Capfile")
|
31
|
-
sleep 1
|
32
|
-
config_template("deploy.rb.erb", "config/deploy.rb")
|
33
|
-
sleep 1
|
16
|
+
task :install do
|
17
|
+
@config = YAML.load_file(File.expand_path('config/deploy_mate.yml', ENV['PWD']))
|
18
|
+
puts "Creating capistrano deployment files:\n"
|
34
19
|
FileUtils.mkdir_p("config/deploy") unless File.exists?("config/deploy")
|
35
|
-
config_template("
|
36
|
-
|
37
|
-
|
38
|
-
puts "You can activate OPTIONAL components e.g. 'whenever' in deploy.rb/Capfile."
|
39
|
-
|
40
|
-
puts "Arr, be dun working!"
|
20
|
+
puts config_template("Capfile.erb", "Capfile")
|
21
|
+
puts config_template("deploy.rb.erb", "config/deploy.rb")
|
22
|
+
puts config_template("deploy/stage.rb.erb", "config/deploy/#{@config['stage_name']}.rb")
|
41
23
|
end
|
42
|
-
|
43
24
|
end
|
44
25
|
|
45
26
|
def config_template(from, to)
|
46
27
|
erb = File.read(File.expand_path("../templates/#{from}", __FILE__))
|
47
28
|
compiled = ERB.new(erb).result(binding)
|
48
29
|
File.open(to, "wb") { |f| f.write(compiled) }
|
49
|
-
|
30
|
+
to
|
50
31
|
end
|
51
32
|
|
52
|
-
def
|
33
|
+
def sidekiq?
|
53
34
|
defined? Sidekiq
|
54
35
|
end
|
55
36
|
|
56
|
-
def
|
37
|
+
def imagemagick?
|
57
38
|
defined? RMagick || defined? MiniMagick
|
58
39
|
end
|
59
40
|
|
60
|
-
def
|
41
|
+
def memcached?
|
61
42
|
defined? Dalli
|
62
43
|
end
|
63
44
|
|
64
|
-
def
|
45
|
+
def rails?
|
65
46
|
defined? Rails
|
66
47
|
end
|
67
48
|
|
@@ -85,32 +66,10 @@ def guess_ruby_version
|
|
85
66
|
ruby_version
|
86
67
|
end
|
87
68
|
|
88
|
-
def
|
89
|
-
|
90
|
-
while(!["yes", "no"].include?(answer))
|
91
|
-
answer = ask("#{prompt} [yes/no]:", (default == "yes" ? "yes" : "no"))
|
92
|
-
end
|
93
|
-
(answer == "yes")
|
94
|
-
end
|
95
|
-
|
96
|
-
def ask_until(prompt, answers, default)
|
97
|
-
begin
|
98
|
-
answer = ask("#{prompt} (#{answers.join(', ')})", default).downcase
|
99
|
-
end until answers.include? answer
|
100
|
-
answer
|
101
|
-
end
|
102
|
-
|
103
|
-
def ask(prompt, default = nil)
|
104
|
-
if default
|
105
|
-
Readline.pre_input_hook = -> {
|
106
|
-
Readline.insert_text(default)
|
107
|
-
Readline.redisplay
|
108
|
-
}
|
109
|
-
end
|
110
|
-
data = Readline.readline("#{prompt}: ")
|
111
|
-
return data.chomp
|
69
|
+
def to_h(value)
|
70
|
+
value ? "yes" : "no"
|
112
71
|
end
|
113
72
|
|
114
73
|
def cat_file(filename)
|
115
|
-
File.open(filename,
|
74
|
+
File.open(filename, "rb") { |f| f.read } if File.exist?(filename)
|
116
75
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'capistrano/deploy_mate_capfile'
|
2
|
-
<% if @
|
2
|
+
<% if @config['rails'] %>
|
3
3
|
require 'capistrano/rails/assets'
|
4
4
|
require 'capistrano/rails/migrations'
|
5
5
|
<% end %>
|
@@ -9,4 +9,4 @@ Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|
|
9
9
|
# Uncomment, if needed
|
10
10
|
|
11
11
|
# require "whenever/capistrano"
|
12
|
-
# before 'deploy:restart', 'deploy:migrate', 'whenever:update_crontab'
|
12
|
+
# before 'deploy:restart', 'deploy:migrate', 'whenever:update_crontab'
|
@@ -1,7 +1,7 @@
|
|
1
|
-
server "<%= @ssh_name %>", roles: [:app, :db, :web<% if @
|
1
|
+
server "<%= @config['ssh_name'] %>", roles: [:app, :db, :web<% if @config['elasticsearch'] %>, :search<% end %>], :primary => true
|
2
2
|
|
3
3
|
set :unicorn_workers, "2"
|
4
|
-
set :nginx_server_name, "<%= @host_name %>"
|
4
|
+
set :nginx_server_name, "<%= @config['host_name'] %>"
|
5
5
|
|
6
|
-
set :environment, "<%= @environment %>"
|
7
|
-
set :branch, ENV.fetch("branch", "<%= @branch_name %>")
|
6
|
+
set :environment, "<%= @config['environment'] %>"
|
7
|
+
set :branch, ENV.fetch("branch", "<%= @config['branch_name'] %>")
|
@@ -1,22 +1,22 @@
|
|
1
1
|
# NOTE: copy this file to /config/deploy.rb
|
2
|
-
set :application, '<%= @app_name %>'
|
2
|
+
set :application, '<%= @config['app_name'] %>'
|
3
3
|
|
4
4
|
require "capistrano/deploy_mate_defaults"
|
5
5
|
|
6
|
-
set :rvm_ruby_version, '<%= @ruby_version %>'
|
6
|
+
set :rvm_ruby_version, '<%= @config['ruby_version'] %>'
|
7
7
|
|
8
8
|
# Set app specific vars
|
9
|
-
set :stages, %w(<%= @stage_name %>)
|
10
|
-
set :default_stage, '<%= @stage_name %>'
|
11
|
-
set :repo_url, '<%= @repo_url %>'
|
12
|
-
set :db_engine, '<%= @db_engine %>'
|
13
|
-
set :app_server, '<%= @app_server %>'
|
9
|
+
set :stages, %w(<%= @config['stage_name'] %>)
|
10
|
+
set :default_stage, '<%= @config['stage_name'] %>'
|
11
|
+
set :repo_url, '<%= @config['repo_url'] %>'
|
12
|
+
set :db_engine, '<%= @config['db_engine'] %>'
|
13
|
+
set :app_server, '<%= @config['app_server'] %>'
|
14
14
|
|
15
|
-
set :imagemagick, <%= @
|
16
|
-
set :memcached, <%= @
|
17
|
-
set :sidekiq, <%= @
|
15
|
+
set :imagemagick, <%= @config['imagemagick'] %>
|
16
|
+
set :memcached, <%= @config['memcached'] %>
|
17
|
+
set :sidekiq, <%= @config['sidekiq'] %>
|
18
18
|
|
19
|
-
set :ssh_file_names, [
|
19
|
+
set :ssh_file_names, [<%= @config['ssh_file_names'].to_a.map { |file| "'#{file}'" }.join(', ') %>]
|
20
20
|
|
21
21
|
# Optionals
|
22
22
|
# Uncomment, if needed
|
@@ -0,0 +1,79 @@
|
|
1
|
+
# This file represents your application deployment configuration and
|
2
|
+
# will be used to generate the capistrano deployment and server setup.
|
3
|
+
# Please go through this file and when you are ready execute:
|
4
|
+
#
|
5
|
+
# bundle exec rake deploy_mate:install
|
6
|
+
|
7
|
+
---
|
8
|
+
|
9
|
+
# Name of the application, which is usually the same as the
|
10
|
+
# repository name.
|
11
|
+
app_name: <%= @app_name %>
|
12
|
+
|
13
|
+
# The url of your GIT repository.
|
14
|
+
repo_url: "git@github.com:your-github-name/<%= @app_name %>.git"
|
15
|
+
|
16
|
+
# For which stage should the server-setup/deployment be generated. It is
|
17
|
+
# recommended to start with a prestage system and afterwards configure
|
18
|
+
# the production system when it is ready.
|
19
|
+
stage_name: prestage
|
20
|
+
|
21
|
+
# Under which rails environment will the application run.
|
22
|
+
environment: prestage
|
23
|
+
|
24
|
+
# Which GIT branch should be deployed to the defined server by default?
|
25
|
+
# You can overrule this value by providing a branch on the deployment command:
|
26
|
+
#
|
27
|
+
# bundle exec cap prestage deploy branch=feature/xyz
|
28
|
+
branch_name: dev
|
29
|
+
|
30
|
+
# Which is the ssh shortcut to connect to the server. It should be configured
|
31
|
+
# in your ~/.ssh/config. You should be able to connect to the server using:
|
32
|
+
#
|
33
|
+
# ssh specified_ssh_name
|
34
|
+
#
|
35
|
+
ssh_name: prestage-server
|
36
|
+
|
37
|
+
# Since you are able to connect to the server with the specified ssh shortcurt,
|
38
|
+
# usually more persons should be able to access it. You can specify a list of
|
39
|
+
# public ssh keys which will be copied to the ~/.ssh/authorized_keys file on the
|
40
|
+
# server. If the list is empty, the current key setting will be left untouched on
|
41
|
+
# the server.
|
42
|
+
ssh_file_names:
|
43
|
+
- "~/.ssh/*.pub"
|
44
|
+
|
45
|
+
# Under which URL should your server be available? An IP address does the job
|
46
|
+
# too
|
47
|
+
host_name: example.com
|
48
|
+
|
49
|
+
# The ruby version, that will be installed and used on the server. It is used
|
50
|
+
# by RVM and must have a compatible syntax like '2.3.0' or 'ruby-2.3.0'.
|
51
|
+
ruby_version: <%= @ruby_version %>
|
52
|
+
|
53
|
+
# Currently there are two database engines supported: 'postgresql' and 'mysql'
|
54
|
+
db_engine: postgresql
|
55
|
+
|
56
|
+
# Currently there are two appservers supported: 'unicorn' and 'puma'.
|
57
|
+
# Remember to add the chosen appserver to your Gemfile if you are not
|
58
|
+
# already using it locally.
|
59
|
+
app_server: unicorn
|
60
|
+
|
61
|
+
# Are your running a rails application?
|
62
|
+
# Possible values 'yes' or 'no'.
|
63
|
+
rails: <%= @rails %>
|
64
|
+
|
65
|
+
# Are you depending on imagemagick for image manipulation (E.g. paperclip gem)?
|
66
|
+
# Possible values 'yes' or 'no'.
|
67
|
+
imagemagick: <%= @imagemagick %>
|
68
|
+
|
69
|
+
# Are you depending on sidekiq (E.g. as active job backend)?
|
70
|
+
# Possible values 'yes' or 'no'.
|
71
|
+
sidekiq: <%= @sidekiq %>
|
72
|
+
|
73
|
+
# Are you depending on elastic search?
|
74
|
+
# Possible values 'yes' or 'no'.
|
75
|
+
elasticsearch: no
|
76
|
+
|
77
|
+
# Are you depending on memcached for example as a cache store?
|
78
|
+
# Possible values 'yes' or 'no'.
|
79
|
+
memcached: <%= @memcached %>
|
data/lib/deploy_mate.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deploy_mate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.20'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Adler
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-
|
13
|
+
date: 2016-05-18 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: capistrano
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- ".rubocop.yml"
|
79
79
|
- ".ruby-gemset"
|
80
80
|
- ".ruby-version"
|
81
|
+
- CHANGELOG.md
|
81
82
|
- Gemfile
|
82
83
|
- Gemfile.lock
|
83
84
|
- README.md
|
@@ -116,10 +117,12 @@ files:
|
|
116
117
|
- lib/capistrano/tasks/seeds.rake
|
117
118
|
- lib/capistrano/tasks/unicorn.rake
|
118
119
|
- lib/capistrano/tasks/upstart.rake
|
120
|
+
- lib/deploy_mate.rb
|
119
121
|
- lib/deploy_mate/tasks.rake
|
120
122
|
- lib/deploy_mate/templates/Capfile.erb
|
121
123
|
- lib/deploy_mate/templates/deploy.rb.erb
|
122
124
|
- lib/deploy_mate/templates/deploy/stage.rb.erb
|
125
|
+
- lib/deploy_mate/templates/deploy_mate.yml.erb
|
123
126
|
homepage: https://github.com/hanseventures/deploy-mate
|
124
127
|
licenses:
|
125
128
|
- MIT
|