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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee9cb9eb9869b7178ba48e01ad3a37475abba0bb
4
- data.tar.gz: 5d9d656af71896e63b1f361da86b596b90140ce2
3
+ metadata.gz: 28c70019cc82629eac23f476f8d6598eceab7316
4
+ data.tar.gz: b9f80eea07cbbc7a9d0f7b9f83fdc0d2f7b954a2
5
5
  SHA512:
6
- metadata.gz: 31910e1843a61237f658b02acc7692e27d9d475350d288754dc7091aceba2f3631dbcf0860b54a8fea3d9a214c659725dfa46c33c5c9f92186b251cc1d3e1b44
7
- data.tar.gz: d914407cd09ace69d4af9e2f9ee137c38b7eba6792627bf5c1ddb96e46a015e5be6104bf38c3e6ae4c17c34a0526df642ffd4d2f7478ce3b347f63a42f150638
6
+ metadata.gz: f2f4a7dd87cadb63a8f9e4274526b752b7ef8a652ad3c83ba83ab5fdb8f481c2669107d468b29015e2e19b02882725694fb710fefa3e0bbcd0f4415993f74645
7
+ data.tar.gz: 5585737548049cbb225c36c96b639dc0497b0e1dbf9d21c996a8c3caaf08ca4de81776204c162471ab888ad89395aeb21acf2cc8811956b400592fe5e4dea3d7
data/CONTRIBUTORS.md CHANGED
@@ -13,7 +13,6 @@ Your name could be here!
13
13
  * [Jon Wood][jellybob]
14
14
  * [Mark Borcherding][markborcherding]
15
15
  * [Nick Laferriere][laferrieren]
16
- * [Hugo Chinchilla][hugochinchilla]
17
16
 
18
17
  Pre-release
19
18
  -----------
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]
@@ -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
@@ -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, :exec_it
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
@@ -1,3 +1,3 @@
1
1
  module Centurion
2
- VERSION = '1.8.4.1'
2
+ VERSION = '1.8.4.2'
3
3
  end
@@ -12,7 +12,7 @@ end
12
12
 
13
13
  task :deploy_console do
14
14
  invoke 'deploy:get_image'
15
- #invoke 'deploy:stop'
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
- on_first_docker_host do |server|
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rory-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.4.1
4
+ version: 1.8.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hugo Chinchilla