rory-deploy 1.8.4.1 → 1.8.4.2
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/CONTRIBUTORS.md +0 -1
- data/README.md +11 -0
- data/bin/rory +1 -1
- data/lib/centurion/deploy.rb +0 -10
- data/lib/centurion/deploy_dsl.rb +0 -4
- data/lib/centurion/docker_server.rb +1 -1
- data/lib/centurion/docker_via_cli.rb +0 -8
- data/lib/centurion/version.rb +1 -1
- data/lib/tasks/deploy.rake +2 -10
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28c70019cc82629eac23f476f8d6598eceab7316
|
4
|
+
data.tar.gz: b9f80eea07cbbc7a9d0f7b9f83fdc0d2f7b954a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2f4a7dd87cadb63a8f9e4274526b752b7ef8a652ad3c83ba83ab5fdb8f481c2669107d468b29015e2e19b02882725694fb710fefa3e0bbcd0f4415993f74645
|
7
|
+
data.tar.gz: 5585737548049cbb225c36c96b639dc0497b0e1dbf9d21c996a8c3caaf08ca4de81776204c162471ab888ad89395aeb21acf2cc8811956b400592fe5e4dea3d7
|
data/CONTRIBUTORS.md
CHANGED
data/README.md
CHANGED
@@ -5,10 +5,21 @@ This is a fork of [centurion by newrelic](https://github.com/newrelic/centurion/
|
|
5
5
|
|
6
6
|
It includes some modifications needed for deploying our applications at Habitissimo. We will try to get all our modifications included in the newrelic upstream but as we can not wait for the newrelic team to accept our patches we need to keep our own fork.
|
7
7
|
|
8
|
+
Install
|
9
|
+
=======
|
10
|
+
|
11
|
+
```
|
12
|
+
gem install rory-deploy
|
13
|
+
```
|
14
|
+
|
8
15
|
The name of the fork is based on the character [Rory Williams](https://en.wikipedia.org/wiki/Rory_Williams) from Doctor Who, which became "The last centurion".
|
9
16
|
|
17
|
+
Original Documentation
|
18
|
+
======================
|
19
|
+
|
10
20
|
Original documentation is appended below, **remember to replace centurion with rory for all commands listed in it**.
|
11
21
|
|
22
|
+
|
12
23
|
Centurion
|
13
24
|
=========
|
14
25
|
|
data/bin/rory
CHANGED
@@ -55,7 +55,7 @@ invoke("environment:#{opts[:environment]}")
|
|
55
55
|
set :image, opts[:image] if opts[:image]
|
56
56
|
set :tag, opts[:tag] if opts[:tag]
|
57
57
|
set :hosts, opts[:hosts].split(",") if opts[:hosts]
|
58
|
-
set :name, opts[:project].gsub(/_/, '-')
|
58
|
+
set :name, opts[:project].gsub(/_/, '-') unless fetch(:name)
|
59
59
|
|
60
60
|
# Override environment variables when specified
|
61
61
|
if opts[:override_env]
|
data/lib/centurion/deploy.rb
CHANGED
@@ -126,14 +126,4 @@ module Centurion::Deploy
|
|
126
126
|
|
127
127
|
server.attach(container['Id'])
|
128
128
|
end
|
129
|
-
|
130
|
-
def enter_container(server, service)
|
131
|
-
container = if service.public_ports.nil? || service.public_ports.empty?
|
132
|
-
server.find_containers_by_name(service.name).first
|
133
|
-
else
|
134
|
-
server.find_containers_by_public_port(service.public_ports.first).first
|
135
|
-
end
|
136
|
-
|
137
|
-
server.exec_it(container["Id"], "/bin/bash")
|
138
|
-
end
|
139
129
|
end
|
data/lib/centurion/deploy_dsl.rb
CHANGED
@@ -8,10 +8,6 @@ module Centurion::DeployDSL
|
|
8
8
|
build_server_group.tap { |hosts| hosts.each { |host| block.call(host) } }
|
9
9
|
end
|
10
10
|
|
11
|
-
def on_first_docker_host(&block)
|
12
|
-
build_server_group.tap { |hosts| block.call(hosts.first) }
|
13
|
-
end
|
14
|
-
|
15
11
|
def env_vars(new_vars)
|
16
12
|
current = fetch(:env_vars, {})
|
17
13
|
new_vars.each_pair do |new_key, new_value|
|
@@ -16,7 +16,7 @@ class Centurion::DockerServer
|
|
16
16
|
def_delegators :docker_via_api, :create_container, :inspect_container,
|
17
17
|
:inspect_image, :ps, :start_container, :stop_container,
|
18
18
|
:remove_container, :restart_container
|
19
|
-
def_delegators :docker_via_cli, :pull, :tail, :attach, :exec
|
19
|
+
def_delegators :docker_via_cli, :pull, :tail, :attach, :exec
|
20
20
|
|
21
21
|
def initialize(host, docker_path, tls_params = {})
|
22
22
|
@docker_path = docker_path
|
@@ -31,14 +31,6 @@ class Centurion::DockerViaCli
|
|
31
31
|
Centurion::Shell.echo(build_command(:exec, "#{container_id} #{commandline}"))
|
32
32
|
end
|
33
33
|
|
34
|
-
def exec_it(container_id, commandline)
|
35
|
-
# the "or true" on the command is to prevent an exception from Shell.validate_status
|
36
|
-
# because docker exec returns the same exit code as the latest command executed on
|
37
|
-
# the shell, which causes an exception to be raised if the latest comand executed
|
38
|
-
# was unsuccessful when you exit the shell.
|
39
|
-
Centurion::Shell.echo(build_command(:exec, "-it #{container_id} #{commandline} || true"))
|
40
|
-
end
|
41
|
-
|
42
34
|
private
|
43
35
|
|
44
36
|
def self.tls_keys
|
data/lib/centurion/version.rb
CHANGED
data/lib/tasks/deploy.rake
CHANGED
@@ -12,7 +12,7 @@ end
|
|
12
12
|
|
13
13
|
task :deploy_console do
|
14
14
|
invoke 'deploy:get_image'
|
15
|
-
|
15
|
+
invoke 'deploy:stop'
|
16
16
|
invoke 'deploy:launch_console'
|
17
17
|
invoke 'deploy:cleanup'
|
18
18
|
end
|
@@ -24,7 +24,6 @@ task :rolling_deploy do
|
|
24
24
|
end
|
25
25
|
|
26
26
|
task :stop => ['deploy:stop']
|
27
|
-
task :enter_container => ['deploy:enter_container']
|
28
27
|
|
29
28
|
namespace :dev do
|
30
29
|
task :export_only do
|
@@ -107,18 +106,11 @@ namespace :deploy do
|
|
107
106
|
end
|
108
107
|
|
109
108
|
task :launch_console do
|
110
|
-
|
111
|
-
defined_service.port_bindings.clear
|
109
|
+
on_each_docker_host do |server|
|
112
110
|
launch_console(server, defined_service)
|
113
111
|
end
|
114
112
|
end
|
115
113
|
|
116
|
-
task :enter_container do
|
117
|
-
on_first_docker_host do |server|
|
118
|
-
enter_container(server, defined_service)
|
119
|
-
end
|
120
|
-
end
|
121
|
-
|
122
114
|
task :rolling_deploy do
|
123
115
|
on_each_docker_host do |server|
|
124
116
|
service = defined_service
|